X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Flive;h=5397837984222986a0f770ce9b7fc2ce27f23edc;hb=fccfd0920ef2d0177d26e76dcfcd132cf53d6988;hp=26fde4dbe8cdef4e980e4fdaf9384b899fd43637;hpb=a6a9d36d569ca73b14f197dbd5a3e06189884e27;p=live-boot-grml.git diff --git a/scripts/live b/scripts/live index 26fde4d..5397837 100755 --- a/scripts/live +++ b/scripts/live @@ -95,10 +95,12 @@ parse_cmdline () kmodel=*|console-setup/modelcode=*) KMODEL=${x#*=} + export KMODEL ;; koptions=*) KOPTIONS=${x#koptions=} + export KOPTIONS ;; live-getty) @@ -156,6 +158,11 @@ parse_cmdline () export NOXAUTOLOGIN ;; + nofastboot) + NOFASTBOOT="Yes" + export NOFASTBOOT + ;; + nopersistent) PERSISTENT="" export PERSISTENT @@ -194,6 +201,11 @@ parse_cmdline () export SHOWMOUNTS ;; + timezone=*) + TIMEZONE="${x#timezone=}" + export TIMEZONE + ;; + todisk=*) TODISK=${x#todisk=} export TODISK @@ -204,6 +216,11 @@ parse_cmdline () export TORAM ;; + union=*) + UNIONTYPE="${x#union=}" + export UNIONTYPE + ;; + xdebconf) XDEBCONF="Yes" export XDEBCONF @@ -233,6 +250,13 @@ parse_cmdline () if [ -z "${MODULE}" ] then MODULE="filesystem" + export MODULE + fi + + if [ -z "${UNIONTYPE}" ] + then + UNIONTYPE="unionfs" + export UNIONTYPE fi } @@ -520,7 +544,7 @@ setup_unionfs() { image_directory="$1" rootmnt="$2" - modprobe "${MP_QUIET}" -b unionfs + modprobe "${MP_QUIET}" -b ${UNIONTYPE} # run-init can't deal with images in a subdir, but we're going to # move all of these away before it runs anyway. No, we're not, @@ -604,7 +628,7 @@ setup_unionfs() { mount ${cowdevice} -t ${cow_fstype} -o rw /cow || panic "Can not mount $cowdevice on /cow" - mount -t unionfs -o dirs=/cow=rw:$rofsstring unionfs "$rootmnt" || panic "Unionfs mount failed" + mount -t ${UNIONTYPE} -o dirs=/cow=rw:$rofsstring ${UNIONTYPE} "$rootmnt" || panic "${UNIONTYPE} mount failed" # Adding other custom mounts if [ -n "${PERSISTENT}" ]; then