aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrijesh Singh <brijesh.singh@amd.com>2018-03-09 14:34:02 -0600
committerBrijesh Singh <brijesh.singh@amd.com>2018-03-09 14:34:02 -0600
commitc5aeb5f77ee9ce74ce39f2797c43497713da094b (patch)
tree61e3d7a0bd66881203ef545e7d94b4f3f3f70965
parenteea132e85b50a51f42d91a0a064bda5d42556a54 (diff)
downloadcachepc-amdsev-c5aeb5f77ee9ce74ce39f2797c43497713da094b.tar.gz
cachepc-amdsev-c5aeb5f77ee9ce74ce39f2797c43497713da094b.zip
provide option to enable virtio device
-rwxr-xr-xlaunch-qemu.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/launch-qemu.sh b/launch-qemu.sh
index 2903c66..5174365 100755
--- a/launch-qemu.sh
+++ b/launch-qemu.sh
@@ -32,7 +32,7 @@ usage() {
echo " -cdrom CDROM image"
echo " -hugetlb use hugetlbfs"
echo " -allow-debug allow debugging the VM"
- echo " -novirtio do not use virtio devices"
+ echo " -virtio use virtio devices"
echo " -gdb start gdbserver"
exit 1
}
@@ -155,7 +155,7 @@ while [[ $1 != "" ]]; do
;;
-allow-debug) ALLOW_DEBUG="1"
;;
- -novirtio) USE_VIRTIO="0"
+ -virtio) USE_VIRTIO="1"
;;
-gdb) USE_GDB="1"
;;