X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=autoconfig.functions;h=cd2e1ca656ccc206b6817a260529fb2788742f9e;hp=1934575a7597a9c70fd0e82987353700ec8d7504;hb=57c8a44f217a0e6fc4cdbfbcdd54108ca5602fba;hpb=3d41d974ba0809127556f59cde8352b898a2d827 diff --git a/autoconfig.functions b/autoconfig.functions index 1934575..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)" @@ -2214,11 +2219,12 @@ fi [ -n "$RELEASE" ] && RELEASECMD="--release $RELEASE" || RELEASECMD='' [ -n "$MIRROR" ] && MIRRORCMD="--mirror $MIRROR" || MIRRORCMD='' [ -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<