diff options
author | Amos Kong <akong@redhat.com> | 2013-12-09 19:53:15 +0800 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2013-12-23 16:02:20 +0400 |
commit | e5187b561ff7b241d609a2848131879072169565 (patch) | |
tree | ae839d3a8e0a7edf0ce43deda5505b4714d30182 /vl.c | |
parent | 6f2bfda35cf1c7b8a5913570b808396ab9299873 (diff) | |
download | qemu-e5187b561ff7b241d609a2848131879072169565.tar.gz qemu-e5187b561ff7b241d609a2848131879072169565.tar.bz2 qemu-e5187b561ff7b241d609a2848131879072169565.zip |
fix -boot strict regressed in commit 6ef4716
Commit 6ef4716 cleaned up parsing of -boot option argument, but
accidentally dropped parameter strict. It should have been updated
exactly like parameter menu. Do that.
Signed-off-by: Amos Kong <akong@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -461,7 +461,7 @@ static QemuOptsList qemu_boot_opts = { .type = QEMU_OPT_STRING, }, { .name = "strict", - .type = QEMU_OPT_STRING, + .type = QEMU_OPT_BOOL, }, { /*End of list */ } }, @@ -4081,6 +4081,7 @@ int main(int argc, char **argv, char **envp) } boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu); + boot_strict = qemu_opt_get_bool(opts, "strict", false); } if (!kernel_cmdline) { |