diff options
| author | Amos Kong | 2013-12-09 12:53:15 +0100 |
|---|---|---|
| committer | Michael Tokarev | 2013-12-23 13:02:20 +0100 |
| commit | e5187b561ff7b241d609a2848131879072169565 (patch) | |
| tree | ae839d3a8e0a7edf0ce43deda5505b4714d30182 | |
| parent | vl: make boot_strict variable static (not used outside vl.c) (diff) | |
| download | qemu-e5187b561ff7b241d609a2848131879072169565.tar.gz qemu-e5187b561ff7b241d609a2848131879072169565.tar.xz 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>
| -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) { |
