diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-27 20:06:29 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-27 20:06:29 +0100 |
commit | 487cd59150eb007959804e8de848fdc88dacbc21 (patch) | |
tree | 51c2bf4fb6fdd506f09e9be56a6f662f99397751 | |
parent | 830140357fc2ad09fc38b3ffd9871357d213d2f1 (diff) | |
download | jenkins.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.sh | 3 |
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 |