mirror of https://github.com/containers/podman.git
20 lines
304 B
Go
20 lines
304 B
Go
package qemu
|
|
|
|
var (
|
|
QemuCommand = "qemu-system-aarch64w"
|
|
)
|
|
|
|
func (v *MachineVM) addArchOptions() []string {
|
|
// stub to fix compilation issues
|
|
opts := []string{}
|
|
return opts
|
|
}
|
|
|
|
func (v *MachineVM) prepare() error {
|
|
return nil
|
|
}
|
|
|
|
func (v *MachineVM) archRemovalFiles() []string {
|
|
return []string{}
|
|
}
|