github.com/containers/podman/v4@v4.9.4/pkg/machine/qemu/options_windows_arm64.go (about)

     1  package qemu
     2  
     3  var (
     4  	QemuCommand = "qemu-system-aarch64w"
     5  )
     6  
     7  func (v *MachineVM) addArchOptions(_ *setNewMachineCMDOpts) []string {
     8  	// stub to fix compilation issues
     9  	opts := []string{}
    10  	return opts
    11  }
    12  
    13  func (v *MachineVM) prepare() error {
    14  	return nil
    15  }
    16  
    17  func (v *MachineVM) archRemovalFiles() []string {
    18  	return []string{}
    19  }