diff options
| -rwxr-xr-x | launch-qemu.sh | 4 |
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" ;; |
