From 52a18abd949b3b46a72f0abb6fbdd7aaf17dda4b Mon Sep 17 00:00:00 2001 From: Matthias Bolte Date: Sun, 13 Dec 2009 18:25:17 +0100 Subject: [PATCH] Fix and improve domain xml video element description The description mismatched the actual structure since the video element was introduced. The nvram attribute is actually called vram. Specify the unit of the vram attribute. --- docs/formatdomain.html.in | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index cfe1609968..46ab0ac0c1 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -774,20 +774,34 @@ qemu-kvm -net nic,model=? /dev/null
       ...
-      <video type='vga' nvram='8192' heads='1'>
-        <acceleration accel3d='yes' accel3d='yes' />
+      <video>
+        <model type='vga' vram='8192' heads='1'>
+          <acceleration accel3d='yes' accel3d='yes'/>
+        </model>
       </video>
       ...
video
-
The video element has a mandatory type - attribute which takes the value "vga", "cirrus", "vmvga", "xen" or "vbox". - You can also provide the amount of video memory using nvram, - the number of screen with heads, and whether acceleration - should be enabled (if supported) using the accel3d and - accel2d attributes in the acceleration element. +
+ The video element is the a container for describing + video devices. +
+
model
+
+ The model element has a mandatory type + attribute which takes the value "vga", "cirrus", "vmvga", "xen" or "vbox". + You can also provide the amount of video memory in kilobytes using + vram and the number of screen with heads. +
+ +
acceleration
+
+ If acceleration should be enabled (if supported) using the + accel3d and accel2d attributes in the + acceleration element. +

Consoles, serial, parallel & channel devices