udev: Drop the standard persistent rules, they're useless on embedded hardware

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5064 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2008-08-12 21:55:54 +00:00
parent 941aea7c90
commit 77c01014e0
1 changed files with 6 additions and 1 deletions

View File

@ -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_${PN} = "hotplug"
PR = "r6"
PR = "r7"
SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://noasmlinkage.patch;patch=1 \
@ -43,6 +43,11 @@ do_install () {
install -m 0644 ${WORKDIR}/devfs-udev.rules ${D}${sysconfdir}/udev/rules.d/devfs-udev.rules
fi
# Remove some default rules that don't work well on embedded devices
rm ${D}${sysconfdir}/udev/rules.d/60-persistent-input.rules
rm ${D}${sysconfdir}/udev/rules.d/60-persistent-storage.rules
rm ${D}${sysconfdir}/udev/rules.d/60-persistent-storage-tape.rules
install -d ${D}${sysconfdir}/udev/scripts/
install -m 0755 ${WORKDIR}/mount.sh ${D}${sysconfdir}/udev/scripts/mount.sh