diff options
-rw-r--r-- | bin/g-i-installation.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index 1f5c46da..bcafb226 100644 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -318,7 +318,11 @@ bootstrap_system() { *) ;; esac fi - echo "--append \"$APPEND\"" >> $QEMU_LAUNCHER + case $NAME in + *_kfreebsd) # not supported for the --append option + ;; + *) echo "--append \"$APPEND\"" >> $QEMU_LAUNCHER + ;; set -x (bash -x $QEMU_LAUNCHER && touch $RESULTS/qemu_quit ) & set +x |