From 1984540206d36aff5bfe41337f56313d9a8f0bf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Mon, 24 Feb 2014 10:50:14 +0100 Subject: [PATCH] Document the keyboard as a valid input type Commit bc18373 added a new input type, but didn't change the documentation. --- docs/formatdomain.html.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index ea1a97b0cb..7f904553db 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -3847,15 +3847,17 @@ qemu-kvm -net nic,model=? /dev/null ... <devices> <input type='mouse' bus='usb'/> + <input type='keyboard' bus='usb'/> </devices> ...
input
The input element has one mandatory attribute, - the type whose value can be either 'mouse' or - 'tablet'. The latter provides absolute - cursor movement, while the former uses relative movement. The optional + the type whose value can be 'mouse', 'tablet' or + (since 1.2.2) 'keyboard'. + The tablet provides absolute cursor movement, + while the mouse uses relative movement. The optional bus attribute can be used to refine the exact device type. It takes values "xen" (paravirtualized), "ps2" and "usb".