diff options
author | Ross Burton <ross@openedhand.com> | 2008-06-23 14:28:36 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2008-06-23 14:28:36 +0000 |
commit | f6e7776727d883ea62bc3725b395ab628d5f4534 (patch) | |
tree | 1378fe84fe36750273f4532a4fb3cbbb3fe0a22f /meta/packages | |
parent | 9f5ec59794871056930327538d52ea67e59b6ec3 (diff) | |
download | poky-f6e7776727d883ea62bc3725b395ab628d5f4534.tar.gz |
udev: save another fork in mount.sh
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4721 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/udev/files/mount.sh | 2 | ||||
-rw-r--r-- | meta/packages/udev/udev_115.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/packages/udev/files/mount.sh b/meta/packages/udev/files/mount.sh index 160acbfdec..0ce1dc7217 100644 --- a/meta/packages/udev/files/mount.sh +++ b/meta/packages/udev/files/mount.sh | |||
@@ -11,7 +11,7 @@ UMOUNT="/bin/umount" | |||
11 | 11 | ||
12 | for line in `grep -v ^# /etc/udev/mount.blacklist` | 12 | for line in `grep -v ^# /etc/udev/mount.blacklist` |
13 | do | 13 | do |
14 | if ( echo "$DEVNAME" | grep -q "$line" ) | 14 | if { echo "$DEVNAME" | grep -q "$line" ; } |
15 | then | 15 | then |
16 | logger "udev/mount.sh" "[$DEVNAME] is blacklisted, ignoring" | 16 | logger "udev/mount.sh" "[$DEVNAME] is blacklisted, ignoring" |
17 | exit 0 | 17 | exit 0 |
diff --git a/meta/packages/udev/udev_115.bb b/meta/packages/udev/udev_115.bb index b688ca88db..4bac1d3cfb 100644 --- a/meta/packages/udev/udev_115.bb +++ b/meta/packages/udev/udev_115.bb | |||
@@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod | |||
3 | the hotplug package and requires a kernel not older than 2.6.12." | 3 | the hotplug package and requires a kernel not older than 2.6.12." |
4 | RPROVIDES_${PN} = "hotplug" | 4 | RPROVIDES_${PN} = "hotplug" |
5 | 5 | ||
6 | PR = "r2" | 6 | PR = "r3" |
7 | 7 | ||
8 | SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ | 8 | SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ |
9 | file://noasmlinkage.patch;patch=1 \ | 9 | file://noasmlinkage.patch;patch=1 \ |