From 36ef5a800d97f16721f418d5be5f529a59f301c3 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 13 Jun 2006 18:25:24 +0000 Subject: udev: Add 092. Included is a custom rule which adds a symlink to the touchscreen as /dev/input/touchscreen0 if present (this does not work under udev 089 due to bugs). Several udev conf files required cleanups to work with the new udev version. --- packages/udev/udev_092.bb | 49 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 packages/udev/udev_092.bb (limited to 'packages/udev/udev_092.bb') diff --git a/packages/udev/udev_092.bb b/packages/udev/udev_092.bb new file mode 100644 index 0000000000..62bc43d48f --- /dev/null +++ b/packages/udev/udev_092.bb @@ -0,0 +1,49 @@ +DESCRIPTION = "udev is a daemon which dynamically creates and removes device nodes from \ +/dev/, handles hotplug events and loads drivers at boot time. It replaces \ +the hotplug package and requires a kernel not older than 2.6.12." +RPROVIDES = "hotplug" + +PR = "r3" + +SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ + file://noasmlinkage.patch;patch=1 \ + file://flags.patch;patch=1 \ + file://udevsynthesize.patch;patch=1 \ + file://udevsynthesize.sh \ + file://mount.blacklist" + +include udev.inc + +INITSCRIPT_PARAMS = "start 03 S ." + +FILES_${PN} += "${base_libdir}" +UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/" +EXTRA_OEMAKE += "libudevdir=/lib/udev" + +do_install () { + install -d ${D}${usrsbindir} \ + ${D}${sbindir} + oe_runmake 'DESTDIR=${D}' INSTALL=install install + install -d ${D}${sysconfdir}/init.d + install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/udev + + install -d ${D}${sysconfdir}/udev/rules.d/ + + install -m 0644 ${WORKDIR}/mount.blacklist ${D}${sysconfdir}/udev/ + install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/local.rules + install -m 0644 ${WORKDIR}/permissions.rules ${D}${sysconfdir}/udev/rules.d/permissions.rules + install -m 0644 ${WORKDIR}/udev.rules ${D}${sysconfdir}/udev/rules.d/udev.rules + install -m 0644 ${WORKDIR}/links.conf ${D}${sysconfdir}/udev/links.conf + if [ "${UDEV_DEVFS_RULES}" = "1" ]; then + install -m 0644 ${WORKDIR}/devfs-udev.rules ${D}${sysconfdir}/udev/rules.d/devfs-udev.rules + fi + + install -d ${D}${sysconfdir}/udev/scripts/ + + install -m 0755 ${WORKDIR}/mount.sh ${D}${sysconfdir}/udev/scripts/mount.sh + install -m 0755 ${WORKDIR}/network.sh ${D}${sysconfdir}/udev/scripts + + install -d ${D}${base_libdir}/udev/ + install -m 0755 ${S}/udevsynthesize ${D}${base_libdir}/udev/udevsynthesize + install -m 0755 ${WORKDIR}/udevsynthesize.sh ${D}${sbindir}/udevsynthesize +} -- cgit v1.2.3 From 9008ba0b855e7ee542b4046035021571cb46a529 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 13 Jun 2006 20:08:24 +0000 Subject: udev 092: Fix a typo --- packages/udev/udev_092.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/udev/udev_092.bb') diff --git a/packages/udev/udev_092.bb b/packages/udev/udev_092.bb index 62bc43d48f..b431c8e0ec 100644 --- a/packages/udev/udev_092.bb +++ b/packages/udev/udev_092.bb @@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod the hotplug package and requires a kernel not older than 2.6.12." RPROVIDES = "hotplug" -PR = "r3" +PR = "r4" SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ file://noasmlinkage.patch;patch=1 \ -- cgit v1.2.3 From 57ad8dc08734e9ecb1026af0a712efabea4f611a Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 13 Jun 2006 20:20:06 +0000 Subject: udev 092: Add missing file. Third time lucky... --- packages/udev/udev_092.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/udev/udev_092.bb') diff --git a/packages/udev/udev_092.bb b/packages/udev/udev_092.bb index b431c8e0ec..f25eeb0946 100644 --- a/packages/udev/udev_092.bb +++ b/packages/udev/udev_092.bb @@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod the hotplug package and requires a kernel not older than 2.6.12." RPROVIDES = "hotplug" -PR = "r4" +PR = "r5" SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ file://noasmlinkage.patch;patch=1 \ -- cgit v1.2.3