From: Marco Amadori Date: Tue, 23 Mar 2010 14:44:00 +0000 (+0100) Subject: Do not specify 'noxino' between directories. X-Git-Tag: debian/2.0.15-1~196 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=caa4ce9f3509aaec9b9199e686e2005ac003d35c;p=live-boot-grml.git Do not specify 'noxino' between directories. --- 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