diff options
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/Options.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configs/common/Options.py b/configs/common/Options.py index d22b3ab3c..9413283f1 100644 --- a/configs/common/Options.py +++ b/configs/common/Options.py @@ -171,3 +171,11 @@ def addFSOptions(parser): parser.add_option("--etherdump", action="store", type="string", dest="etherdump", help="Specify the filename to dump a pcap capture of the" \ "ethernet traffic") + + # Disk Image Options + parser.add_option("--disk-image", action="store", type="string", default=None, + help="Path to the disk image to use.") + + # Memory Size Options + parser.add_option("--mem-size", action="store", type="string", default=None, + help="Path to the disk image to use.") |