mirror of
https://github.com/containers/podman.git
synced 2025-08-01 07:40:22 +08:00

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