]> code.ossystems Code Review - openembedded-core.git/commitdiff
udev: save another fork in mount.sh
authorRoss Burton <ross@openedhand.com>
Mon, 23 Jun 2008 14:28:36 +0000 (14:28 +0000)
committerRoss Burton <ross@openedhand.com>
Mon, 23 Jun 2008 14:28:36 +0000 (14:28 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4721 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/udev/files/mount.sh
meta/packages/udev/udev_115.bb

index 160acbfdeccaf391d676540592b679aa38dfda2d..0ce1dc72175b55a2a9a5f53e006367f43942f5f5 100644 (file)
@@ -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
index b688ca88db92de0f609f1ce7593d602eaa273ccb..4bac1d3cfba7393c0b410ac819b09e211d897429 100644 (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 = "r2"
+PR = "r3"
 
 SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
           file://noasmlinkage.patch;patch=1 \