diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-12-08 13:11:51 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-12 07:59:43 -0600 |
commit | 22a0e04b9bb5a02e13b3e5cf5ea8abfac5f34120 (patch) | |
tree | 79c348724dd9bff41d27a11800e5270e06f2a22e | |
parent | 88589343708f10f1ded0af100b2e11eec623bae2 (diff) |
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>
-rw-r--r-- | qemu-options.hx | 7 | ||||
-rw-r--r-- | vl.c | 8 |
2 files changed, 15 insertions, 0 deletions
diff --git a/qemu-options.hx b/qemu-options.hx index e05b2a0b8d..7234447e58 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1589,6 +1589,13 @@ The default device is @code{vc} in graphical mode and @code{stdio} in non graphical mode. 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, \ "-pidfile file write PID to 'file'\n") STEXI @@ -5284,6 +5284,14 @@ int main(int argc, char **argv, char **envp) monitor_parse(optarg); default_monitor = 0; 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: opts = qemu_opts_parse(&qemu_chardev_opts, optarg, "backend"); if (!opts) { |