aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Donnellan <andrew.donnellan@au1.ibm.com>2018-12-18 17:47:13 +1100
committerDmitry Vyukov <dvyukov@google.com>2019-01-15 16:45:20 +0100
commit4cdc0f5f6b22e00b18b29d4cba249b29468a0004 (patch)
tree2bbb5b0b300bd1dbbfd5475907c9ef2506a59e5f
parentc7d8a8c07b624482e46806317c2e73494242e6f0 (diff)
vm/qemu: Disable VGA on ppc64le
Disable qemu VGA output on ppc64le. The current pseries console code in the kernel has a bunch of bugs, and if you don't disable VGA syzkaller won't see console output. Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
-rw-r--r--vm/qemu/qemu.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go
index 41f2de2ca..c466a1f56 100644
--- a/vm/qemu/qemu.go
+++ b/vm/qemu/qemu.go
@@ -119,7 +119,7 @@ var archConfigs = map[string]*archConfig{
"linux/ppc64le": {
Qemu: "qemu-system-ppc64",
TargetDir: "/",
- QemuArgs: "-enable-kvm",
+ QemuArgs: "-enable-kvm -vga none",
CmdLine: linuxCmdline,
},
"freebsd/amd64": {