summaryrefslogtreecommitdiffstats
path: root/bin/g-i-installation.sh
diff options
context:
space:
mode:
authorSteven Chamberlain <steven@pyro.eu.org>2015-05-02 15:52:04 +0100
committerHolger Levsen <holger@layer-acht.org>2015-05-02 17:57:00 +0200
commit3f3c73b5f84cd8887218674f9a0873cfc9e32fe9 (patch)
treed6f02854186ca4207ed81813934696ce6142bfa2 /bin/g-i-installation.sh
parenta3f156a5a06c26c0389fefac4066fb9895f66775 (diff)
downloadjenkins.debian.net-3f3c73b5f84cd8887218674f9a0873cfc9e32fe9.tar.xz
g-i: support kfreebsd*_$desktop suffixes
Diffstat (limited to 'bin/g-i-installation.sh')
-rwxr-xr-xbin/g-i-installation.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh
index 533288d2..47a2b0ff 100755
--- a/bin/g-i-installation.sh
+++ b/bin/g-i-installation.sh
@@ -330,7 +330,7 @@ bootstrap_system() {
echo -n "$QEMU_KERNEL " >> $QEMU_LAUNCHER
else
case $NAME in
- *_kfreebsd) ;;
+ *_kfreebsd*) ;;
*_hurd*) # Hurd needs multiboot options jenkins can't escape correctly
echo -n '--kernel '$WORKSPACE'/gnumach --initrd "'$IMAGE_MNT'/boot/initrd.gz \$(ramdisk-create),'$IMAGE_MNT'/boot/kernel/ext2fs.static --multiboot-command-line=\${kernel-command-line} --host-priv-port=\${host-port} --device-master-port=\${device-port} --exec-server-task=\${exec-task} -T typed gunzip:device:rd0 \$(task-create) \$(task-resume),'$IMAGE_MNT'/boot/kernel/ld.so.1 /hurd/exec \$(exec-task=task-create)" ' >> $QEMU_LAUNCHER
APPEND="console=com0 $APPEND"
@@ -339,7 +339,7 @@ bootstrap_system() {
esac
fi
case $NAME in
- *_kfreebsd) # not supported for the --append option
+ *_kfreebsd*) # not supported for the --append option
;;
*) echo "--append \"$APPEND\"" >> $QEMU_LAUNCHER
;;