summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-10-27 20:06:29 +0100
committerHolger Levsen <holger@layer-acht.org>2014-10-27 20:06:29 +0100
commit487cd59150eb007959804e8de848fdc88dacbc21 (patch)
tree51c2bf4fb6fdd506f09e9be56a6f662f99397751
parent830140357fc2ad09fc38b3ffd9871357d213d2f1 (diff)
downloadjenkins.debian.net-487cd59150eb007959804e8de848fdc88dacbc21.tar.xz
g-i-i: try to workaround lp#1318119, broken graphics with cirrus card, see eg https://jenkins.debian.net/job/g-i-installation_debian-edu_jessie_standalone_mate/18/artifact/results//snapshot_007321.png or the bug in launchpad for examples
-rw-r--r--bin/g-i-installation.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh
index 6a80313f..493572de 100644
--- a/bin/g-i-installation.sh
+++ b/bin/g-i-installation.sh
@@ -168,7 +168,8 @@ bootstrap_system() {
*_hurd*) QEMU_OPTS="$QEMU_OPTS -vga std"
gzip -cd $IMAGE_MNT/boot/kernel/gnumach.gz > $WORKSPACE/gnumach
;;
- *) QEMU_KERNEL="--kernel $IMAGE_MNT/install.amd/vmlinuz --initrd $IMAGE_MNT/install.amd/gtk/initrd.gz"
+ *) QEMU_OPTS="$QEMU_OPTS -vga std" # try to workaround lp#1318119
+ QEMU_KERNEL="--kernel $IMAGE_MNT/install.amd/vmlinuz --initrd $IMAGE_MNT/install.amd/gtk/initrd.gz"
;;
esac
else