-# This is a grep pattern matched against the device name
-# Any matched pattern will _not_ be mounted / removed by udevd
-
/dev/mtdblock
/dev/loop
-/dev/ram
\ No newline at end of file
+/dev/ram
-# This is a grep pattern matched against the device name
-# Any matched pattern will _not_ be mounted / removed by udevd
-
/dev/mtdblock
/dev/loop
-/dev/ram
\ No newline at end of file
+/dev/ram
PMOUNT="/usr/bin/pmount"
UMOUNT="/bin/umount"
-for line in `grep -v ^# /etc/udev/mount.blacklist`
+for line in `cat /etc/udev/mount.blacklist`
do
- if { echo "$DEVNAME" | grep -q "$line" ; }
+ if [ ` expr match "$DEVNAME" "$line" ` -gt 0 ];
then
logger "udev/mount.sh" "[$DEVNAME] is blacklisted, ignoring"
exit 0
-# This is a grep pattern matched against the device name
-# Any matched pattern will _not_ be mounted / removed by udevd
-
/dev/mtdblock
/dev/hda
/dev/loop
-/dev/ram
\ No newline at end of file
+/dev/ram
-# This is a grep pattern matched against the device name
-# Any matched pattern will _not_ be mounted / removed by udevd
-
/dev/mtdblock
/dev/loop
-/dev/ram
\ No newline at end of file
+/dev/ram
the hotplug package and requires a kernel not older than 2.6.12."
RPROVIDES_${PN} = "hotplug"
-PR = "r5"
+PR = "r6"
SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://noasmlinkage.patch;patch=1 \