summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/udev/udev-extraconf/mount.sh
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/udev/udev-extraconf/mount.sh')
-rw-r--r--meta/recipes-core/udev/udev-extraconf/mount.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/udev/udev-extraconf/mount.sh b/meta/recipes-core/udev/udev-extraconf/mount.sh
index b23731870e..5ba66e98e2 100644
--- a/meta/recipes-core/udev/udev-extraconf/mount.sh
+++ b/meta/recipes-core/udev/udev-extraconf/mount.sh
@@ -26,11 +26,11 @@ fi
26 26
27PMOUNT="/usr/bin/pmount" 27PMOUNT="/usr/bin/pmount"
28 28
29for line in `grep -h -v ^# /etc/udev/mount.blacklist /etc/udev/mount.blacklist.d/*` 29for line in `grep -h -v ^# /etc/udev/mount.ignorelist /etc/udev/mount.ignorelist.d/*`
30do 30do
31 if [ ` expr match "$DEVNAME" "$line" ` -gt 0 ]; 31 if [ ` expr match "$DEVNAME" "$line" ` -gt 0 ];
32 then 32 then
33 logger "udev/mount.sh" "[$DEVNAME] is blacklisted, ignoring" 33 logger "udev/mount.sh" "[$DEVNAME] is marked to ignore"
34 exit 0 34 exit 0
35 fi 35 fi
36done 36done