| 1 |
package "qemu-start" |
| 2 |
version "2.0" |
| 3 |
purpose "Start QEMU safely and with networking" |
| 4 |
#usage is not available in the Edge version of gengetopt. See hack in main(). |
| 5 |
#usage "qemu-start [OPTIONS] -- [OPTIONS for QEMU]" |
| 6 |
option "tapnr" t "Universal TUN/TAP device number (e.g. 0 for tap0)" typestr="tap-dev-number" int default="0" optional |
| 7 |
option "vlan" v "Virtual LAN (VLAN) number (e.g. 0)" typestr="vlan#" int default="0" optional |
| 8 |
option "macaddr" m "MAC address of guest emulated NIC" typestr="mac-address" string optional |
| 9 |
option "nic-model" n "Model of guest emulated NIC" typestr="nic-model" string optional |
| 10 |
option "system" s "Type of system to emulate (e.g. PPC), calls qemu-system-<system>. If left blank /usr/bin/qemu is called." typestr="architecture" string optional |
| 11 |
option "window-left" x "Left position of SDL screen (e.g. for use with -no-frame)" typestr="X" int optional |
| 12 |
option "window-top" y "Top position of SDL screen (e.g. for use with -no-frame)" typestr="Y" int optional |