mirror of https://gitee.com/openkylin/qemu.git
qemu-options: Remove the deprecated -no-quit option
This option was just a wrapper around the -display ...,window-close=off parameter, and the name "no-quit" is rather confusing compared to "window-close" (since there are still other means to quit the emulator), so let's remove this now. Message-Id: <20211215082417.180735-1-thuth@redhat.com> Acked-by: Michal Prívozník <mprivozn@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
585507017c
commit
fe86fe237c
|
@ -134,12 +134,6 @@ specified.
|
|||
Use ``-display sdl,window-close=...`` instead (i.e. with a minus instead of
|
||||
an underscore between "window" and "close").
|
||||
|
||||
``-no-quit`` (since 6.1)
|
||||
''''''''''''''''''''''''
|
||||
|
||||
The ``-no-quit`` is a synonym for ``-display ...,window-close=off`` which
|
||||
should be used instead.
|
||||
|
||||
``-alt-grab`` and ``-display sdl,alt_grab=on`` (since 6.2)
|
||||
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
|
||||
|
||||
|
|
|
@ -330,6 +330,13 @@ RISC-V firmware not booted by default (removed in 5.1)
|
|||
QEMU 5.1 changes the default behaviour from ``-bios none`` to ``-bios default``
|
||||
for the RISC-V ``virt`` machine and ``sifive_u`` machine.
|
||||
|
||||
``-no-quit`` (removed in 7.0)
|
||||
'''''''''''''''''''''''''''''
|
||||
|
||||
The ``-no-quit`` was a synonym for ``-display ...,window-close=off`` which
|
||||
should be used instead.
|
||||
|
||||
|
||||
QEMU Machine Protocol (QMP) commands
|
||||
------------------------------------
|
||||
|
||||
|
|
|
@ -2065,14 +2065,6 @@ SRST
|
|||
``-display sdl,grab-mod=rctrl`` instead.
|
||||
ERST
|
||||
|
||||
DEF("no-quit", 0, QEMU_OPTION_no_quit,
|
||||
"-no-quit disable SDL/GTK window close capability (deprecated)\n", QEMU_ARCH_ALL)
|
||||
SRST
|
||||
``-no-quit``
|
||||
Disable window close capability (SDL and GTK only). This option is
|
||||
deprecated, please use ``-display ...,window-close=off`` instead.
|
||||
ERST
|
||||
|
||||
DEF("sdl", 0, QEMU_OPTION_sdl,
|
||||
"-sdl shorthand for -display sdl\n", QEMU_ARCH_ALL)
|
||||
SRST
|
||||
|
|
|
@ -1941,7 +1941,7 @@ static void qemu_create_early_backends(void)
|
|||
"for SDL, ignoring option");
|
||||
}
|
||||
if (dpy.has_window_close && !use_gtk && !use_sdl) {
|
||||
error_report("-no-quit is only valid for GTK and SDL, "
|
||||
error_report("window-close is only valid for GTK and SDL, "
|
||||
"ignoring option");
|
||||
}
|
||||
|
||||
|
@ -3301,12 +3301,6 @@ void qemu_init(int argc, char **argv, char **envp)
|
|||
warn_report("-ctrl-grab is deprecated, please use "
|
||||
"-display sdl,grab-mod=rctrl instead.");
|
||||
break;
|
||||
case QEMU_OPTION_no_quit:
|
||||
dpy.has_window_close = true;
|
||||
dpy.window_close = false;
|
||||
warn_report("-no-quit is deprecated, please use "
|
||||
"-display ...,window-close=off instead.");
|
||||
break;
|
||||
case QEMU_OPTION_sdl:
|
||||
warn_report("-sdl is deprecated, use -display sdl instead.");
|
||||
#ifdef CONFIG_SDL
|
||||
|
|
Loading…
Reference in New Issue