summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Chamberlain <steven@pyro.eu.org>2014-11-12 13:27:00 +0000
committerHolger Levsen <holger@layer-acht.org>2014-11-12 15:06:00 +0100
commit35e9827ddc4c2f59b6b4c208bb2345012b207577 (patch)
tree2b86a7b21e8bd7ff37b9986b7382da52d4440029
parentdb79d5c38ed7415aa60fff5165c546cfe8a67b08 (diff)
downloadjenkins.debian.net-35e9827ddc4c2f59b6b4c208bb2345012b207577.tar.xz
kfreebsd: don't use unsupported --append option
-rw-r--r--bin/g-i-installation.sh6
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