qemumonitor helper, extra_append from CLI, pci_rescan.sh

This commit is contained in:
Ciro Santilli
2017-06-24 09:34:30 +01:00
parent 82f34ea2e0
commit a8e11e6de9
5 changed files with 24 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ kgdb=false
nographic=false
extra_append=''
extra_flags=''
while getopts a:dknq OPT; do
while getopts a:de:knq OPT; do
case "$OPT" in
a)
arch=$OPTARG
@@ -19,6 +19,9 @@ while getopts a:dknq OPT; do
debug=true
extra_flags="$extra_flags -S -s"
;;
e)
extra_append="$extra_append $OPTARG"
;;
k)
debug=true
extra_append="$extra_append kgdbwait"