qemu: Use Alpine's QEMU rather than host system QEMU

Use --host-qemu to use QEMU that is installed on the host system.
This commit is contained in:
ryang 2018-07-01 18:49:10 -04:00
parent ae12236a34
commit c650354fc3
2 changed files with 39 additions and 6 deletions

View file

@ -124,6 +124,10 @@ def arguments_qemu(subparser):
display.add_argument("--display", dest="qemu_display", const="sdl,gl=on",
help="Qemu's display parameter (default: sdl,gl=on)",
default="sdl,gl=on", nargs="?")
ret.add_argument("--host-qemu", dest="host_qemu", action='store_true',
help="Use the host system's qemu")
return ret