mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-15 04:09:44 +00:00
monitor: Reorder intialization to drop initial mux focus
So far a multiplexed monitor started disabled. Restore this property for the new way of configuring by moving the monitor initialization before all devices (the last one to attach to a char-mux will gain the focus). Once we have a real use case for that, we may also consider assigning the initial focus explicitly. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
140e065d72
commit
157b931987
7
vl.c
7
vl.c
@ -3618,6 +3618,10 @@ int main(int argc, char **argv, char **envp)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0) {
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
|
if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
|
||||||
exit(1);
|
exit(1);
|
||||||
if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
|
if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
|
||||||
@ -3730,9 +3734,6 @@ int main(int argc, char **argv, char **envp)
|
|||||||
|
|
||||||
text_consoles_set_display(ds);
|
text_consoles_set_display(ds);
|
||||||
|
|
||||||
if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0)
|
|
||||||
exit(1);
|
|
||||||
|
|
||||||
if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
|
if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
|
||||||
fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
|
fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
|
||||||
gdbstub_dev);
|
gdbstub_dev);
|
||||||
|
Loading…
Reference in New Issue
Block a user