diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-10-27 06:56:32 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-12-15 12:51:57 -0500 |
commit | ebe3444468a4913e0208db1f74ea9336c7580202 (patch) | |
tree | 47e759c1859aa308f5f81717376a05ea4df8be25 | |
parent | 0a2949e0be1d7320e4714b26ef60ac4d874dd64f (diff) |
monitor: allow quitting while in preconfig state
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | hmp-commands.hx | 1 | ||||
-rw-r--r-- | qapi/control.json | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/hmp-commands.hx b/hmp-commands.hx index dd460eb908..470a420c2d 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -45,6 +45,7 @@ ERST .params = "", .help = "quit the emulator", .cmd = hmp_quit, + .flags = "p", }, SRST diff --git a/qapi/control.json b/qapi/control.json index 9c8a51352d..2615d5170b 100644 --- a/qapi/control.json +++ b/qapi/control.json @@ -219,7 +219,8 @@ # -> { "execute": "quit" } # <- { "return": {} } ## -{ 'command': 'quit' } +{ 'command': 'quit', + 'allow-preconfig': true } ## # @MonitorMode: |