X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=autoconfig.functions;h=cd2e1ca656ccc206b6817a260529fb2788742f9e;hp=a6b07a5eecf4550579565cde7831f8150170f10f;hb=57c8a44f217a0e6fc4cdbfbcdd54108ca5602fba;hpb=b90a031943fba5fa292afb783710f066e1416898 diff --git a/autoconfig.functions b/autoconfig.functions index a6b07a5..cd2e1ca 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -2194,6 +2194,11 @@ if checkbootparam "mirror" ; then MIRROR="$(getbootparam 'mirror' 2>>$DEBUG)" fi +if checkbootparam "boot_append" ; then + BOOT_APPEND='' + BOOT_APPEND="$(getbootparam 'boot_append' 2>>$DEBUG)" +fi + if checkbootparam "password" ; then PASSWORD='' PASSWORD="$(getbootparam 'password' 2>>$DEBUG)" @@ -2213,12 +2218,13 @@ fi [ -n "$GROOT" ] && GROOTCMD="--groot $GROOT" || GROOTCMD='' [ -n "$RELEASE" ] && RELEASECMD="--release $RELEASE" || RELEASECMD='' [ -n "$MIRROR" ] && MIRRORCMD="--mirror $MIRROR" || MIRRORCMD='' -[ -n "$PASSWORD" ] && PASSWORDCMD="--password $PASSWORD" ] || PASSWORDCMD='' +[ -n "$PASSWORD" ] && PASSWORDCMD="--password $PASSWORD" || PASSWORDCMD='' +[ -n "$BOOT_APPEND" ] && BOOT_APPEND="--boot_append $BOOT_APPEND" || BOOT_APPEND='' # and finally write script and execute it cat>|/usr/bin/grml-debootstrap_noninteractive<