mirror of https://github.com/containers/podman.git
19 lines
314 B
Go
19 lines
314 B
Go
package qemu
|
|
|
|
var (
|
|
QemuCommand = "qemu-system-x86_64"
|
|
)
|
|
|
|
func (v *MachineVM) addArchOptions() []string {
|
|
opts := []string{"-machine", "q35,accel=hvf:tcg", "-cpu", "host"}
|
|
return opts
|
|
}
|
|
|
|
func (v *MachineVM) prepare() error {
|
|
return nil
|
|
}
|
|
|
|
func (v *MachineVM) archRemovalFiles() []string {
|
|
return []string{}
|
|
}
|