mirror of
https://github.com/containers/podman.git
synced 2025-06-25 03:52:15 +08:00
Merge pull request #17029 from arixmkii/qemu_windows_settings
Updated options for QEMU on Windows hosts
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
package qemu
|
||||
|
||||
var (
|
||||
QemuCommand = "qemu-system-x86_64"
|
||||
QemuCommand = "qemu-system-x86_64w"
|
||||
)
|
||||
|
||||
func (v *MachineVM) addArchOptions() []string {
|
||||
|
19
pkg/machine/qemu/options_windows_arm64.go
Normal file
19
pkg/machine/qemu/options_windows_arm64.go
Normal 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{}
|
||||
}
|
Reference in New Issue
Block a user