diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-10-31 15:54:33 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2006-10-31 15:54:33 +0000 |
commit | 191f6ccfc8a95aae3cddf729ba27175e6e1fcda4 (patch) | |
tree | f5649cb12469dbf3b2c5b3e6b581537811d0faa5 /packages/udev/udev_089.bb | |
parent | fcd0c98b96d5b27573f7ca346ba522ec8692ae6c (diff) |
udev: fix udev rule for SAMSUNG UARTS (stupid missing ',' in rule!)
udev: remove 084 and 089, but keep 092 which seems to be pretty solid
Diffstat (limited to 'packages/udev/udev_089.bb')
-rw-r--r-- | packages/udev/udev_089.bb | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/packages/udev/udev_089.bb b/packages/udev/udev_089.bb deleted file mode 100644 index a91a0eee5d..0000000000 --- a/packages/udev/udev_089.bb +++ /dev/null @@ -1,49 +0,0 @@ -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 = "r4" - -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" - -require udev.inc - -INITSCRIPT_PARAMS = "start 03 S ." - -FILES_${PN} += "${base_libdir}/udev/*" -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 -} |