diff options
Diffstat (limited to 'meta/packages/udev/udev_092.bb')
-rw-r--r-- | meta/packages/udev/udev_092.bb | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/meta/packages/udev/udev_092.bb b/meta/packages/udev/udev_092.bb deleted file mode 100644 index 0e94d1f6c8..0000000000 --- a/meta/packages/udev/udev_092.bb +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | DESCRIPTION = "udev is a daemon which dynamically creates and removes device nodes from \ | ||
2 | /dev/, handles hotplug events and loads drivers at boot time. It replaces \ | ||
3 | the hotplug package and requires a kernel not older than 2.6.12." | ||
4 | RPROVIDES_${PN} = "hotplug" | ||
5 | |||
6 | PR = "r17" | ||
7 | |||
8 | SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ | ||
9 | file://noasmlinkage.patch;patch=1 \ | ||
10 | file://flags.patch;patch=1 \ | ||
11 | file://udevsynthesize.patch;patch=1 \ | ||
12 | file://udevsynthesize.sh \ | ||
13 | file://arm_inotify_fix.patch;patch=1 \ | ||
14 | " | ||
15 | |||
16 | SRC_URI_append_h2200 = " file://50-hostap_cs.rules " | ||
17 | PACKAGE_ARCH_h2200 = "h2200" | ||
18 | |||
19 | require udev.inc | ||
20 | |||
21 | INITSCRIPT_PARAMS = "start 03 S ." | ||
22 | |||
23 | FILES_${PN} += "${base_libdir}/udev/*" | ||
24 | FILES_${PN}-dbg += "${base_libdir}/udev/.debug" | ||
25 | UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/" | ||
26 | EXTRA_OEMAKE += "libudevdir=/lib/udev libdir=${base_libdir} prefix=" | ||
27 | |||
28 | do_install () { | ||
29 | install -d ${D}${usrsbindir} \ | ||
30 | ${D}${sbindir} | ||
31 | oe_runmake 'DESTDIR=${D}' INSTALL=install install | ||
32 | install -d ${D}${sysconfdir}/init.d | ||
33 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/udev | ||
34 | install -m 0755 ${WORKDIR}/udev-cache ${D}${sysconfdir}/init.d/udev-cache | ||
35 | |||
36 | install -d ${D}${sysconfdir}/udev/rules.d/ | ||
37 | |||
38 | install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/local.rules | ||
39 | install -m 0644 ${WORKDIR}/permissions.rules ${D}${sysconfdir}/udev/rules.d/permissions.rules | ||
40 | install -m 0644 ${WORKDIR}/udev.rules ${D}${sysconfdir}/udev/rules.d/udev.rules | ||
41 | install -m 0644 ${WORKDIR}/links.conf ${D}${sysconfdir}/udev/links.conf | ||
42 | if [ "${UDEV_DEVFS_RULES}" = "1" ]; then | ||
43 | install -m 0644 ${WORKDIR}/devfs-udev.rules ${D}${sysconfdir}/udev/rules.d/devfs-udev.rules | ||
44 | fi | ||
45 | |||
46 | install -d ${D}${sysconfdir}/udev/scripts/ | ||
47 | |||
48 | install -m 0755 ${WORKDIR}/mount.sh ${D}${sysconfdir}/udev/scripts/mount.sh | ||
49 | install -m 0755 ${WORKDIR}/network.sh ${D}${sysconfdir}/udev/scripts | ||
50 | |||
51 | install -d ${D}${base_libdir}/udev/ | ||
52 | install -m 0755 ${S}/udevsynthesize ${D}${base_libdir}/udev/udevsynthesize | ||
53 | install -m 0755 ${WORKDIR}/udevsynthesize.sh ${D}${sbindir}/udevsynthesize | ||
54 | } | ||
55 | |||
56 | do_install_append_h2200() { | ||
57 | install -m 0644 ${WORKDIR}/50-hostap_cs.rules ${D}${sysconfdir}/udev/rules.d/50-hostap_cs.rules | ||
58 | } | ||