summaryrefslogtreecommitdiffstats
path: root/meta/packages/udev/udev_092.bb
diff options
context:
space:
mode:
authorChris Larson <kergoth@openedhand.com>2006-10-05 21:56:07 +0000
committerChris Larson <kergoth@openedhand.com>2006-10-05 21:56:07 +0000
commit16e5c3b37721d0e2b335de6a9d4514f394c2f336 (patch)
treee7ea111f3e549383d82ed773579d2cd00c1cb1b9 /meta/packages/udev/udev_092.bb
parent009c24a4011928da2a9a4e38e6ca384fa7c654f8 (diff)
downloadpoky-16e5c3b37721d0e2b335de6a9d4514f394c2f336.tar.gz
Update udev from upstream oe (still using 092, just a newer PR, so the .debug stuff is split out of its packaging).
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@788 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/udev/udev_092.bb')
-rw-r--r--meta/packages/udev/udev_092.bb17
1 files changed, 13 insertions, 4 deletions
diff --git a/meta/packages/udev/udev_092.bb b/meta/packages/udev/udev_092.bb
index 794a525754..87febedf05 100644
--- a/meta/packages/udev/udev_092.bb
+++ b/meta/packages/udev/udev_092.bb
@@ -3,21 +3,26 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod
3the hotplug package and requires a kernel not older than 2.6.12." 3the hotplug package and requires a kernel not older than 2.6.12."
4RPROVIDES = "hotplug" 4RPROVIDES = "hotplug"
5 5
6PR = "r7" 6PR = "r11"
7 7
8SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ 8SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
9 file://noasmlinkage.patch;patch=1 \ 9 file://noasmlinkage.patch;patch=1 \
10 file://flags.patch;patch=1 \ 10 file://flags.patch;patch=1 \
11 file://udevsynthesize.patch;patch=1 \ 11 file://udevsynthesize.patch;patch=1 \
12 file://arm_inotify_fix.patch;patch=1 \
13 file://udevsynthesize.sh \ 12 file://udevsynthesize.sh \
14 file://mount.blacklist" 13 file://arm_inotify_fix.patch;patch=1 \
14 file://mount.blacklist \
15 "
16
17SRC_URI_append_h2200 = " file://50-hostap_cs.rules "
18PACKAGE_ARCH_h2200 = "h2200"
15 19
16require udev.inc 20require udev.inc
17 21
18INITSCRIPT_PARAMS = "start 03 S ." 22INITSCRIPT_PARAMS = "start 03 S ."
19 23
20FILES_${PN} += "${base_libdir}" 24FILES_${PN} += "${base_libdir}/udev/*"
25FILES_${PN}-dbg += "${base_libdir}/udev/.debug"
21UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/" 26UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/"
22EXTRA_OEMAKE += "libudevdir=/lib/udev" 27EXTRA_OEMAKE += "libudevdir=/lib/udev"
23 28
@@ -48,3 +53,7 @@ do_install () {
48 install -m 0755 ${S}/udevsynthesize ${D}${base_libdir}/udev/udevsynthesize 53 install -m 0755 ${S}/udevsynthesize ${D}${base_libdir}/udev/udevsynthesize
49 install -m 0755 ${WORKDIR}/udevsynthesize.sh ${D}${sbindir}/udevsynthesize 54 install -m 0755 ${WORKDIR}/udevsynthesize.sh ${D}${sbindir}/udevsynthesize
50} 55}
56
57do_install_append_h2200() {
58 install -m 0644 ${WORKDIR}/50-hostap_cs.rules ${D}${sysconfdir}/udev/rules.d/50-hostap_cs.rules
59}