diff options
| author | Andrew Donnellan <andrew.donnellan@au1.ibm.com> | 2019-01-11 17:02:31 +1100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-01-15 16:45:20 +0100 |
| commit | c7d8a8c07b624482e46806317c2e73494242e6f0 (patch) | |
| tree | f39d38e4f48eaa0c9dcd3788da1537be91743569 | |
| parent | f4013aa9724fdaf3386d65247d2eca2332a85911 (diff) | |
vm/qemu: Enable KVM on ppc64le
ppc64le supports KVM, let's use it.
This obviously won't work on an x86 host, but at present there are issues
using syzkaller on ppc64le with qemu in TCG mode anyway.
Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
| -rw-r--r-- | vm/qemu/qemu.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go index 3c569f2f1..41f2de2ca 100644 --- a/vm/qemu/qemu.go +++ b/vm/qemu/qemu.go @@ -119,6 +119,7 @@ var archConfigs = map[string]*archConfig{ "linux/ppc64le": { Qemu: "qemu-system-ppc64", TargetDir: "/", + QemuArgs: "-enable-kvm", CmdLine: linuxCmdline, }, "freebsd/amd64": { |
