Use qcow2 by default for savevm, loadvm.

Create shortcuts for -t linux-reconfigure and -t host-qemu-reconfigure.
This commit is contained in:
Ciro Santilli
2018-02-14 06:16:52 +00:00
parent a14c95346c
commit 5ae702c71c
6 changed files with 20 additions and 4 deletions

8
build
View File

@@ -7,7 +7,7 @@ j="$(($(nproc) - 2))"
post_script_args=''
x11=false
v=0
while getopts 'a:j:p:St:v' OPT; do
while getopts 'a:j:lp:qSt:v' OPT; do
case "$OPT" in
a)
arch="$OPTARG"
@@ -15,9 +15,15 @@ while getopts 'a:j:p:St:v' OPT; do
j)
j="$OPTARG"
;;
l)
extra_targets="$extra_args linux-reconfigure"
;;
p)
post_script_args="$OPTARG"
;;
q)
extra_targets="$extra_args host-qemu-reconfigure"
;;
S)
qemu_sdl=''
;;