You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: internal/gok/vmrun.go
+3-1
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ type vmRunConfig struct {
46
46
sudostring
47
47
targetStorageBytesint
48
48
archstring
49
+
netdevstring
49
50
}
50
51
51
52
func (r*vmRunConfig) effectiveGoarch() string {
@@ -62,6 +63,7 @@ func init() {
62
63
vmRunCmd.Flags().StringVarP(&vmRunImpl.sudo, "sudo", "", "", "Whether to elevate privileges using sudo when required (one of auto, always, never, default auto)")
63
64
vmRunCmd.Flags().IntVarP(&vmRunImpl.targetStorageBytes, "target_storage_bytes", "", 1258299392, "Size of the disk image in bytes")
64
65
vmRunCmd.Flags().StringVarP(&vmRunImpl.arch, "arch", "", "", "architecture for which to build and run QEMU. One of 'amd64' or 'arm64'")
0 commit comments