summaryrefslogtreecommitdiff
path: root/pkg/machine/qemu/options_darwin_amd64.go
blob: ee10362919d840f53bbfc8b50dffe493f0dc3b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package qemu

var (
	QemuCommand = "qemu-system-x86_64"
)

func (v *MachineVM) addArchOptions() []string {
	opts := []string{"-machine", "q35,accel=hvf:tcg"}
	return opts
}

func (v *MachineVM) prepare() error {
	return nil
}

func (v *MachineVM) archRemovalFiles() []string {
	return []string{}
}