mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
udev: save another fork in mount.sh
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4721 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -11,7 +11,7 @@ UMOUNT="/bin/umount"
|
||||
|
||||
for line in `grep -v ^# /etc/udev/mount.blacklist`
|
||||
do
|
||||
if ( echo "$DEVNAME" | grep -q "$line" )
|
||||
if { echo "$DEVNAME" | grep -q "$line" ; }
|
||||
then
|
||||
logger "udev/mount.sh" "[$DEVNAME] is blacklisted, ignoring"
|
||||
exit 0
|
||||
|
||||
@@ -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 = "r2"
|
||||
PR = "r3"
|
||||
|
||||
SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
|
||||
file://noasmlinkage.patch;patch=1 \
|
||||
|
||||
Reference in New Issue
Block a user