# HG changeset patch # User Christopher Rogers # Date 1305223538 0 # Node ID 0523f5b458e0e5e65fb48397471310875d9565a8 # Parent d672aef40303ec9a192b56eb5d7a787a7ff7fad8 liblinuxlive: Folders are now bind instead of rbind with mount_device function. diff -r d672aef40303 -r 0523f5b458e0 initramfs/liblinuxlive --- a/initramfs/liblinuxlive Wed May 11 13:35:04 2011 +0000 +++ b/initramfs/liblinuxlive Thu May 12 18:05:38 2011 +0000 @@ -400,7 +400,7 @@ if [ "$FS" ]; then OPTIONS=$(fs_options $FS mount); FS="-t $FS"; fi if [ "$OPTIONS" ]; then OPTIONS="$OPTIONS"; else OPTIONS=""; fi if [ -f "$DEV" ]; then OPTIONS="$OPTIONS,loop"; fi - if [ -d "$DEV" ]; then OPTIONS="$OPTIONS,rbind"; fi + if [ -d "$DEV" ]; then OPTIONS="$OPTIONS,bind"; fi if [ "$3" ]; then OPTIONS="$OPTIONS,$3"; fi OPTIONS=$(echo "$OPTIONS" | sed -r "s/^,+//")