diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-09 11:09:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 11:09:52 +0200 |
commit | d22b54442e295d1592aa2d05b896b9fc6f81fecd (patch) | |
tree | 092c4107feaec1061c124fccb13de628d6681017 | |
parent | b0eeca695d08bbb2994412fcaae23aa3d787d947 (diff) | |
parent | b6ef7cf21dfebdff9064eaa7d8658c2fd4e713e0 (diff) | |
download | podman-d22b54442e295d1592aa2d05b896b9fc6f81fecd.tar.gz podman-d22b54442e295d1592aa2d05b896b9fc6f81fecd.tar.bz2 podman-d22b54442e295d1592aa2d05b896b9fc6f81fecd.zip |
Merge pull request #10605 from baude/3.2hvf
Correct qemu options for Intel macs
-rw-r--r-- | pkg/machine/qemu/options_darwin_amd64.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/machine/qemu/options_darwin_amd64.go b/pkg/machine/qemu/options_darwin_amd64.go index 69f7982b2..ef9ad146b 100644 --- a/pkg/machine/qemu/options_darwin_amd64.go +++ b/pkg/machine/qemu/options_darwin_amd64.go @@ -5,7 +5,7 @@ var ( ) func (v *MachineVM) addArchOptions() []string { - opts := []string{"-cpu", "host"} + opts := []string{"-cpu", "host", "-accel", "hvf"} return opts } |