Skip to content

Commit

Permalink
Merge pull request #9844 from afbjorklund/qemu-kvm
Browse files Browse the repository at this point in the history
Add machine support for more Linux distros
  • Loading branch information
openshift-merge-robot authored Mar 29, 2021
2 parents ac3499c + f606e9e commit 8e01f48
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkg/machine/qemu/options_linux_amd64.go
Original file line number Diff line number Diff line change
@@ -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
}

Expand Down

0 comments on commit 8e01f48

Please sign in to comment.