From: Amos Kong Date: Mon, 9 Dec 2013 11:53:15 +0000 (+0800) Subject: fix -boot strict regressed in commit 6ef4716 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e5187b561ff7b241d609a2848131879072169565;p=qemu.git 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 Reviewed-by: Markus Armbruster Signed-off-by: Michael Tokarev --- diff --git a/vl.c b/vl.c index ed8debb4e0..e755aea8c4 100644 --- a/vl.c +++ b/vl.c @@ -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) {