Skip to content

Commit

Permalink
update README & add -I=--boot=uefi to help page
Browse files Browse the repository at this point in the history
  • Loading branch information
ryran committed Feb 10, 2016
1 parent f4fd299 commit 9127999
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ SELECTING INITIAL IMAGE TO BUILD:
TEMPLATE Specify the template to install from
-l, --list List available templates
--arch {x86_64,i386,i686,ia64,armv71,ppc,ppc64,ppc64le,aarch64,sparc64,s390,s390x}
Specify architecture (defaults to same architecture
you're running)
Specify architecture in case there are multiple
choices (defaults to same architecture as upvm)
--info Print virt-builder metadata for chosen template
IMPORTANT HARDWARE-LEVEL (VM) OPTIONS:
Expand Down Expand Up @@ -213,7 +213,7 @@ TOTALLY OPTIONAL HARDWARE-LEVEL (VM) OPTIONS:
created disk image (may be used more than once; NOTE:
to pass options that start with a dash, use
'--vinstall-arg=--option' or '-I=-o', for example:
'-I=--cpu=core2duo -I=--video=cirrus
'-I=--cpu=core2duo -I=--video=cirrus -I=--boot=uefi
-I=--graphics=vnc,password=mypass')
ABOUT CONFIG FILES:
Expand All @@ -225,6 +225,6 @@ ABOUT CONFIG FILES:
override config file values which override defaults.
VERSION:
upvm v0.10.0 last mod 2016/02/02
upvm v0.10.3 last mod 2016/02/09
See <http://github.com/ryran/upvm> to report bugs or RFEs
```
2 changes: 1 addition & 1 deletion modules/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def parse():
help="If this option is omitted, a single NIC will be created in the guest and connected to a bridge (if one exists) or the 'default' virtual network; if this option is used once it will modify the default NIC; this option can be specified multiple times to setup more than one NIC; in its simplest form OPTIONS can be 'bridge=BRIDGE' (where BRIDGE is a bridge device name, e.g., 'br0') or 'network=NAME' (where NAME is a virtual network, e.g., 'default'); more complicated example: '-w network=default -w bridge=br0' (where the 1st NIC would be connected to the default private network and the 2nd would be connected to the [presumably public] bridge br0)")
grpBB.add_argument(
'--vinstall-arg', '-I', metavar='ARG', action='append',
help="Add ARG as an extra option/argument to the virt-install command which creates a guest from the vb-created disk image (may be used more than once; NOTE: to pass options that start with a dash, use '--vinstall-arg=--option' or '-I=-o', for example: '-I=--cpu=core2duo -I=--video=cirrus -I=--graphics=vnc,password=mypass')")
help="Add ARG as an extra option/argument to the virt-install command which creates a guest from the vb-created disk image (may be used more than once; NOTE: to pass options that start with a dash, use '--vinstall-arg=--option' or '-I=-o', for example: '-I=--cpu=core2duo -I=--video=cirrus -I=--boot=uefi -I=--graphics=vnc,password=mypass')")
# Parse and return
if haveArgcomplete:
argcomplete.autocomplete(p)
Expand Down

0 comments on commit 9127999

Please sign in to comment.