Merge pull request #9844 from afbjorklund/qemu-kvm

Add machine support for more Linux distros
This commit is contained in:
OpenShift Merge Robot
2021-03-29 14:10:42 +00:00
committed by GitHub

View File

@ -1,11 +1,14 @@
package qemu
var (
QemuCommand = "qemu-kvm"
QemuCommand = "qemu-system-x86_64"
)
func (v *MachineVM) addArchOptions() []string {
opts := []string{"-cpu", "host"}
opts := []string{
"-accel", "kvm",
"-cpu", "host",
}
return opts
}