summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/live5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/live b/scripts/live
index 0fb6adf..d05080d 100755
--- a/scripts/live
+++ b/scripts/live
@@ -1119,7 +1119,8 @@ setup_unionfs ()
if [ "${UNIONTYPE}" = "aufs" ]
then
- roopt="rr,noxino"
+ roopt="rr"
+ noxino_opt="noxino,"
elif [ "${UNIONTYPE}" = "unionfs-fuse" ]
then
roopt="RO"
@@ -1380,7 +1381,7 @@ setup_unionfs ()
;;
*)
- mount -t ${UNIONTYPE} -o noatime,dirs=/cow=rw:${rofsstring} ${UNIONTYPE} "${rootmnt}" || panic "mount ${UNIONTYPE} on ${rootmnt} failed with option noatime,dirs=/cow=rw:${rofsstring}"
+ mount -t ${UNIONTYPE} -o noatime,${noxino_opt}dirs=/cow=rw:${rofsstring} ${UNIONTYPE} "${rootmnt}" || panic "mount ${UNIONTYPE} on ${rootmnt} failed with option noatime,${noxino_opt}dirs=/cow=rw:${rofsstring}"
;;
esac
fi