From 88b40c683fda6fa00639de01d4274e94bd4f1cdd Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Wed, 23 Oct 2019 14:01:28 +0200 Subject: [PATCH] qemu-options: Rework the help text of the '-display' option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Improve the help text of the "-display" option: - Only print the options that we have enabled in the binary (similar to what we do for other options like -netdev already) - The "frame=on|off" from "-display sdl" has been removed in commit 09bd7ba9f5f7 ("Remove deprecated -no-frame option"), so we should not show this in the help text anymore - The "-display egl-headless" line was missing a "\n" at the end - Indent the default display text in a nicer way Signed-off-by: Thomas Huth Reviewed-by: Philippe Mathieu-Daudé Message-id: 20191023120129.13721-1-huth@tuxfamily.org Signed-off-by: Gerd Hoffmann --- qemu-options.hx | 38 +++++++++++++++++++++++++------------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/qemu-options.hx b/qemu-options.hx index 1fc2470e2f..637597d0d9 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1546,26 +1546,38 @@ STEXI ETEXI DEF("display", HAS_ARG, QEMU_OPTION_display, +#if defined(CONFIG_SPICE) "-display spice-app[,gl=on|off]\n" - "-display sdl[,frame=on|off][,alt_grab=on|off][,ctrl_grab=on|off]\n" +#endif +#if defined(CONFIG_SDL) + "-display sdl[,alt_grab=on|off][,ctrl_grab=on|off]\n" " [,window_close=on|off][,gl=on|core|es|off]\n" - "-display gtk[,grab_on_hover=on|off][,gl=on|off]|\n" - "-display vnc=[,]\n" - "-display curses[,charset=]\n" - "-display none\n" - "-display egl-headless[,rendernode=]" - " select display type\n" - "The default display is equivalent to\n" +#endif #if defined(CONFIG_GTK) - "\t\"-display gtk\"\n" + "-display gtk[,grab_on_hover=on|off][,gl=on|off]|\n" +#endif +#if defined(CONFIG_VNC) + "-display vnc=[,]\n" +#endif +#if defined(CONFIG_CURSES) + "-display curses[,charset=]\n" +#endif +#if defined(CONFIG_OPENGL) + "-display egl-headless[,rendernode=]\n" +#endif + "-display none\n" + " select display backend type\n" + " The default display is equivalent to\n " +#if defined(CONFIG_GTK) + "\"-display gtk\"\n" #elif defined(CONFIG_SDL) - "\t\"-display sdl\"\n" + "\"-display sdl\"\n" #elif defined(CONFIG_COCOA) - "\t\"-display cocoa\"\n" + "\"-display cocoa\"\n" #elif defined(CONFIG_VNC) - "\t\"-vnc localhost:0,to=99,id=default\"\n" + "\"-vnc localhost:0,to=99,id=default\"\n" #else - "\t\"-display none\"\n" + "\"-display none\"\n" #endif , QEMU_ARCH_ALL) STEXI