summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2014-01-24 17:47:09 -0500
committerCole Robinson <crobinso@redhat.com>2014-01-25 17:20:29 -0500
commit87a611b5470d9b86bf57a71ce111fa1d41d8e2cd (patch)
treeaf0a541d6bc4a8df400655418f73e727e08c0645
parent748ff1c4cc249be6c3de30429ec0092a7832af33 (diff)
downloadvirt-manager-87a611b5470d9b86bf57a71ce111fa1d41d8e2cd.tar.gz
cli: Allow controlling arch, type, emulator via --boot
-rw-r--r--virtinst/cli.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/virtinst/cli.py b/virtinst/cli.py
index 7c9b10f8..38747786 100644
--- a/virtinst/cli.py
+++ b/virtinst/cli.py
@@ -1403,6 +1403,11 @@ class ParserBoot(VirtCLIParser):
self.set_param("os.kernel_args", "extra_args")
self.set_param("os.kernel_args", "kernel_args")
self.set_param("os.init", "init")
+ self.set_param("os.arch", "arch")
+ self.set_param("type", "domain_type")
+ self.set_param("os.machine", "machine")
+ self.set_param("os.os_type", "os_type")
+ self.set_param("emulator", "emulator")
# Order matters for boot devices, we handle it specially in parse
def noset_cb(val):