]> xenbits.xensource.com Git - osstest.git/commitdiff
ts-debian-hvm-install: Remove VGA console runes.
authorIan Campbell <ian.campbell@citrix.com>
Mon, 27 Jul 2015 12:51:25 +0000 (13:51 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Wed, 5 Aug 2015 16:08:59 +0000 (17:08 +0100)
I don't think there is any point in these since c60b6d20b0fd
"ts-debian-hvm-install: Arrange for installed guest to use a serial
console" and they represent an unexplained difference between the
islinux and grub cases.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
ts-debian-hvm-install

index bd165069424dc533740c22328ee5af94b9b053cf..2c3503d74d64a1a1e58775736bb34903d0b3402f 100755 (executable)
@@ -112,7 +112,7 @@ set default="0"
 set timeout=5
 
 menuentry 'debian guest auto Install' {
-    linux /install.amd/vmlinuz console=vga preseed/file=/preseed.cfg console=ttyS0,115200n8 -- console=ttyS0,115200n8
+    linux /install.amd/vmlinuz preseed/file=/preseed.cfg console=ttyS0,115200n8 -- console=ttyS0,115200n8
     initrd /install.amd/initrd.gz
 }
 END
@@ -128,7 +128,7 @@ sub isolinux_cfg () {
 
     label autoinstall
         kernel /install.amd/vmlinuz
-        append video=vesa:ywrap,mtrr vga=788 preseed/file=/preseed.cfg initrd=/install.amd/initrd.gz console=ttyS0,115200n8 -- console=ttyS0,115200n8
+        append preseed/file=/preseed.cfg initrd=/install.amd/initrd.gz console=ttyS0,115200n8 -- console=ttyS0,115200n8
 END
 }