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.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-core/udev/udev-extraconf/mount.sh b/meta/recipes-core/udev/udev-extraconf/mount.sh
index 2eb9affcc8..99c76b2530 100644
--- a/meta/recipes-core/udev/udev-extraconf/mount.sh
+++ b/meta/recipes-core/udev/udev-extraconf/mount.sh
@@ -49,8 +49,12 @@ if [ "$ACTION" = "add" ] && [ -n "$DEVNAME" ]; then
49 $MOUNT $DEVNAME 2> /dev/null 49 $MOUNT $DEVNAME 2> /dev/null
50 fi 50 fi
51 51
52 # If the device isn't mounted at this point, it isn't configured in fstab 52 # If the device isn't mounted at this point, it isn't
53 grep -q "^$DEVNAME " /proc/mounts || automount 53 # configured in fstab (note the root filesystem can show up as
54 # /dev/root in /proc/mounts, so check the device number too)
55 if expr $MAJOR "*" 256 + $MINOR != `stat -c %d /`; then
56 grep -q "^$DEVNAME " /proc/mounts || automount
57 fi
54fi 58fi
55 59
56 60