From 35e9827ddc4c2f59b6b4c208bb2345012b207577 Mon Sep 17 00:00:00 2001 From: Steven Chamberlain Date: Wed, 12 Nov 2014 13:27:00 +0000 Subject: kfreebsd: don't use unsupported --append option --- bin/g-i-installation.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3-54-g00ecf