diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-27 23:39:08 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-27 23:39:08 +0200 |
commit | 3c2ef9216626e5883feeb60a89caaba10c6e2254 (patch) | |
tree | 0f56361bbf656752c024d26fbe5b3ce9fa6da21d /bin | |
parent | 403b0b26f6e2d435014e8f29a62c104425fbd9c4 (diff) | |
download | jenkins.debian.net-3c2ef9216626e5883feeb60a89caaba10c6e2254.tar.xz |
g-i: always use larger video
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/g-i-installation.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index 431c3f66..ac70c0f0 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -123,8 +123,9 @@ bootstrap_system() { echo "Doing g-i installation test for $NAME now." # qemu related variables (incl kernel+initrd) - display first, as we grep for this in the process list QEMU_OPTS="-display vnc=$DISPLAY -no-shutdown -enable-kvm" - VIDEOBITRATE=700 - VIDEOSIZE=800x600 + VIDEOBITRATE=1200 + VIDEOSIZE=1024x768 + CONVERTOPTS="-gravity center -background gray10 -extent $VIDEOSIZE" if [ -n "$IMAGE" ] ; then QEMU_OPTS="$QEMU_OPTS -cdrom $IMAGE -boot d" case $NAME in @@ -132,9 +133,6 @@ bootstrap_system() { *_hurd*) QEMU_OPTS="$QEMU_OPTS -cpu host" QEMU_OPTS="$QEMU_OPTS -vga std" gzip -cd $IMAGE_MNT/boot/kernel/gnumach.gz > $WORKSPACE/gnumach - VIDEOBITRATE=1200 - VIDEOSIZE=1024x768 - CONVERTOPTS="-gravity center -background gray10 -extent $VIDEOSIZE" ;; *) QEMU_KERNEL="--kernel $IMAGE_MNT/install.amd/vmlinuz --initrd $IMAGE_MNT/install.amd/gtk/initrd.gz" ;; |