From: Matthias Bolte Date: Sun, 13 Dec 2009 17:25:17 +0000 (+0100) Subject: Fix and improve domain xml video element description X-Git-Tag: v0.7.5~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52a18abd949b3b46a72f0abb6fbdd7aaf17dda4b;p=thirdparty%2Flibvirt.git 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. --- 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