diff options
-rw-r--r-- | meta/recipes-core/udev/udev-extraconf/mount.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/udev/udev-extraconf/mount.sh b/meta/recipes-core/udev/udev-extraconf/mount.sh index 0cd51fcde8..c19e2aa68a 100644 --- a/meta/recipes-core/udev/udev-extraconf/mount.sh +++ b/meta/recipes-core/udev/udev-extraconf/mount.sh | |||
@@ -211,7 +211,7 @@ if [ "$ACTION" = "remove" ] || [ "$ACTION" = "change" ] && [ -x "$UMOUNT" ] && [ | |||
211 | logger "mount.sh/remove" "cleaning up $DEVNAME, was mounted by the auto-mounter" | 211 | logger "mount.sh/remove" "cleaning up $DEVNAME, was mounted by the auto-mounter" |
212 | for mnt in `cat /proc/mounts | grep "$DEVNAME" | cut -f 2 -d " " ` | 212 | for mnt in `cat /proc/mounts | grep "$DEVNAME" | cut -f 2 -d " " ` |
213 | do | 213 | do |
214 | $UMOUNT $mnt | 214 | $UMOUNT "`printf $mnt`" |
215 | done | 215 | done |
216 | # Remove mount directory created by the auto-mounter | 216 | # Remove mount directory created by the auto-mounter |
217 | # and clean up our tmp cache file | 217 | # and clean up our tmp cache file |