mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 04:43:54 -06:00
add new -mon switch
Add -mon switch which maps pretty straight forward into the QemuOpts internal representation: -mon chardev=<name>[,mode=[control|readline]][,[no]default] Via config file: [mon] chardev = "<name>" mode = "readline" default = "on" Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
8858934370
commit
22a0e04b9b
2 changed files with 15 additions and 0 deletions
|
@ -1589,6 +1589,13 @@ The default device is @code{vc} in graphical mode and @code{stdio} in
|
||||||
non graphical mode.
|
non graphical mode.
|
||||||
ETEXI
|
ETEXI
|
||||||
|
|
||||||
|
DEF("mon", HAS_ARG, QEMU_OPTION_mon, \
|
||||||
|
"-mon chardev=[name][,mode=readline|control][,default]\n")
|
||||||
|
STEXI
|
||||||
|
@item -mon chardev=[name][,mode=readline|control][,default]
|
||||||
|
Setup monitor on chardev @var{name}.
|
||||||
|
ETEXI
|
||||||
|
|
||||||
DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
|
DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
|
||||||
"-pidfile file write PID to 'file'\n")
|
"-pidfile file write PID to 'file'\n")
|
||||||
STEXI
|
STEXI
|
||||||
|
|
8
vl.c
8
vl.c
|
@ -5284,6 +5284,14 @@ int main(int argc, char **argv, char **envp)
|
||||||
monitor_parse(optarg);
|
monitor_parse(optarg);
|
||||||
default_monitor = 0;
|
default_monitor = 0;
|
||||||
break;
|
break;
|
||||||
|
case QEMU_OPTION_mon:
|
||||||
|
opts = qemu_opts_parse(&qemu_mon_opts, optarg, "chardev");
|
||||||
|
if (!opts) {
|
||||||
|
fprintf(stderr, "parse error: %s\n", optarg);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
default_monitor = 0;
|
||||||
|
break;
|
||||||
case QEMU_OPTION_chardev:
|
case QEMU_OPTION_chardev:
|
||||||
opts = qemu_opts_parse(&qemu_chardev_opts, optarg, "backend");
|
opts = qemu_opts_parse(&qemu_chardev_opts, optarg, "backend");
|
||||||
if (!opts) {
|
if (!opts) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue