diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-02-25 15:52:32 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-13 10:27:46 +0100 |
commit | 702ec69cc1aa87a1e53d1b066a38a9eb0fa7845b (patch) | |
tree | ad39cd88ddcab8a51f303b8a7e3497249a09cbb3 /qapi-schema.json | |
parent | cd153e2aa2f0ec39c04c2b732ebebfc6d4766986 (diff) |
chardev: add vc support to qapi
This patch adds 'vc' support to qapi and also switches over the
vc chardev initialization to the new qapi code path.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index dad4d4aed1..4ee5650293 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3231,6 +3231,23 @@ { 'type': 'ChardevSpicePort', 'data': { 'fqdn' : 'str' } } ## +# @ChardevVC: +# +# Configuration info for virtual console chardevs. +# +# @width: console width, in pixels +# @height: console height, in pixels +# @cols: console width, in chars +# @rows: console height, in chars +# +# Since: 1.5 +## +{ 'type': 'ChardevVC', 'data': { '*width' : 'int', + '*height' : 'int', + '*cols' : 'int', + '*rows' : 'int' } } + +## # @ChardevBackend: # # Configuration info for the new chardev backend. @@ -3252,7 +3269,8 @@ 'stdio' : 'ChardevStdio', 'console': 'ChardevDummy', 'spicevmc' : 'ChardevSpiceChannel', - 'spiceport' : 'ChardevSpicePort' } } + 'spiceport' : 'ChardevSpicePort', + 'vc' : 'ChardevVC' } } ## # @ChardevReturn: |