mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
ui: Print available display backends with '-display help'
We already print availabled devices with "-device help", or available backends with "-netdev help" or "-chardev help". Let's provide a way for the users to query the available display backends, too. Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-id: 20200108144702.29969-1-thuth@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
3c8a657598
commit
c388f408b5
4 changed files with 23 additions and 1 deletions
15
ui/console.c
15
ui/console.c
|
@ -2333,6 +2333,21 @@ void qemu_display_init(DisplayState *ds, DisplayOptions *opts)
|
|||
dpys[opts->type]->init(ds, opts);
|
||||
}
|
||||
|
||||
void qemu_display_help(void)
|
||||
{
|
||||
int idx;
|
||||
|
||||
printf("Available display backend types:\n");
|
||||
for (idx = DISPLAY_TYPE_NONE; idx < DISPLAY_TYPE__MAX; idx++) {
|
||||
if (!dpys[idx]) {
|
||||
ui_module_load_one(DisplayType_str(idx));
|
||||
}
|
||||
if (dpys[idx]) {
|
||||
printf("%s\n", DisplayType_str(dpys[idx]->type));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void qemu_chr_parse_vc(QemuOpts *opts, ChardevBackend *backend, Error **errp)
|
||||
{
|
||||
int val;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue