From: John Hodge (sonata) Date: Mon, 3 Dec 2012 14:07:04 +0000 (+0800) Subject: RunQemu - Fixed -notee and -nographic X-Git-Tag: rel0.15~614 X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Facess2.git;a=commitdiff_plain;h=e5267593edd97a2d7e79beb5d72c4b474d00460b RunQemu - Fixed -notee and -nographic --- diff --git a/RunQemu b/RunQemu index 87cae417..b73a9f31 100755 --- a/RunQemu +++ b/RunQemu @@ -69,7 +69,7 @@ QEMU_PARAMS=$QEMU_PARAMS" -net "$_NETTYPE if [ "x$_NOUSB" != "xyes" ] ; then QEMU_PARAMS=$QEMU_PARAMS" -usb" -# QEMU_PARAMS=$QEMU_PARAMS" -device usb-ehci" + QEMU_PARAMS=$QEMU_PARAMS" -device usb-ehci" QEMU_PARAMS=$QEMU_PARAMS" -drive id=test_usb_image,file=USB_Test_Image.img,if=none" QEMU_PARAMS=$QEMU_PARAMS" -device usb-storage,drive=test_usb_image" QEMU_PARAMS=$QEMU_PARAMS" -usbdevice mouse" @@ -80,12 +80,12 @@ fi # qemu-system-x86_64 $QEMU_PARAMS -serial stdio | tee QemuLog.txt #echo $QEMU $BOOTOPT $QEMU_PARAMS if [ "x$_NOGRAPHIC" = "xyes" ] ; then - $QEMU $BOOTOPT $QEMU_PARAMS -nographic + eval $QEMU $BOOTOPT $QEMU_PARAMS -nographic exit fi if [ "x$_NOTEE" = "xyes" ] ; then - $QEMU $BOOTOPT $QEMU_PARAMS -serial stdio + eval $QEMU $BOOTOPT $QEMU_PARAMS -serial stdio exit fi