Added a new option that allows you to increase the system image size for qemu (#568)

This commit is contained in:
Brian Otto 2017-09-15 08:41:40 -07:00 committed by Oliver Smith
parent 8ef89accd8
commit 19531d518d
2 changed files with 46 additions and 0 deletions

View file

@ -280,6 +280,7 @@ def arguments():
qemu.add_argument("--arch", choices=["aarch64", "arm", "x86_64"],
help="emulate a different architecture")
qemu.add_argument("--cmdline", help="override kernel commandline")
qemu.add_argument("--image-size", help="set system image size (e.g. 2048M or 2G)")
qemu.add_argument("-m", "--memory", type=int, default=1024,
help="guest RAM (default: 1024)")
qemu.add_argument("-p", "--port", type=int, default=2222,