Files
podman/pkg/machine/qemu/options_windows_arm64.go
Arthur Sengileyev 35d2f61ec1 Updated options for QEMU on Windows hosts
Using "w" suffixed versions of QEMU binaries for correct background process
handling and not bind it to lifecycle of command prompt window. Stub for
arm64 version added to fix compilation issues of this target, when QEMU
machine will be finally enabled.

Signed-off-by: Arthur Sengileyev <arthur.sengileyev@gmail.com>
2023-01-09 23:58:47 +02:00

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{}
}