mirror of
https://github.com/containers/podman.git
synced 2025-10-20 12:43:58 +08:00
12 lines
204 B
Go
12 lines
204 B
Go
package qemu
|
|
|
|
var (
|
|
QemuCommand = "qemu-system-aarch64w"
|
|
)
|
|
|
|
func (q *QEMUStubber) addArchOptions(_ *setNewMachineCMDOpts) []string {
|
|
// stub to fix compilation issues
|
|
opts := []string{}
|
|
return opts
|
|
}
|