diff options
author | Steven Chamberlain <steven@pyro.eu.org> | 2014-11-12 13:27:00 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-11-12 15:06:00 +0100 |
commit | 35e9827ddc4c2f59b6b4c208bb2345012b207577 (patch) | |
tree | 2b86a7b21e8bd7ff37b9986b7382da52d4440029 | |
parent | db79d5c38ed7415aa60fff5165c546cfe8a67b08 (diff) | |
download | jenkins.debian.net-35e9827ddc4c2f59b6b4c208bb2345012b207577.tar.xz |
kfreebsd: don't use unsupported --append option
-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 |