Merge pull request #17029 from arixmkii/qemu_windows_settings

Updated options for QEMU on Windows hosts
This commit is contained in:
OpenShift Merge Robot
2023-01-10 21:40:23 -05:00
committed by GitHub
2 changed files with 20 additions and 1 deletions

View File

@ -1,7 +1,7 @@
package qemu
var (
QemuCommand = "qemu-system-x86_64"
QemuCommand = "qemu-system-x86_64w"
)
func (v *MachineVM) addArchOptions() []string {

View File

@ -0,0 +1,19 @@
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{}
}