915 lines
35 KiB
Diff
915 lines
35 KiB
Diff
commit 6d8b6d2847f31a3d7a234536c12b8feca751a02f
|
|
Author: Ján Tomko <jtomko@redhat.com>
|
|
Date: Mon Apr 11 14:26:06 2016 +0200
|
|
|
|
conf: also mark the implicit video as primary
|
|
|
|
Commit 119cd06 started setting the primary bool for the first
|
|
user-specified video even if user omitted the 'primary' attribute.
|
|
|
|
However this was done before the addition of the implicit device.
|
|
This broke startup of transient qemu domains with no <video>:
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1325757
|
|
|
|
Move this default to virDomainDefPostParseInternal,
|
|
after the addition of the implicit video device, to catch the implicit
|
|
video as well.
|
|
|
|
Index: libvirt-1.3.3/src/conf/domain_conf.c
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/src/conf/domain_conf.c
|
|
+++ libvirt-1.3.3/src/conf/domain_conf.c
|
|
@@ -3926,6 +3926,11 @@ virDomainDefPostParseInternal(virDomainD
|
|
if (virDomainDefAddImplicitDevices(def) < 0)
|
|
return -1;
|
|
|
|
+ /* Mark the first video as primary. If the user specified primary="yes",
|
|
+ * the parser already inserted the device at def->videos[0] */
|
|
+ if (def->nvideos != 0)
|
|
+ def->videos[0]->primary = true;
|
|
+
|
|
/* clean up possibly duplicated metadata entries */
|
|
virDomainDefMetadataSanitize(def);
|
|
|
|
@@ -16368,9 +16373,6 @@ virDomainDefParseXML(xmlDocPtr xml,
|
|
goto error;
|
|
}
|
|
}
|
|
- /* if not specified by user mark the first video as primary */
|
|
- if (n && !primaryVideo)
|
|
- def->videos[0]->primary = true;
|
|
|
|
VIR_FREE(nodes);
|
|
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-sdl-fullscreen.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-graphics-sdl-fullscreen.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-sdl-fullscreen.xml
|
|
@@ -27,7 +27,7 @@
|
|
<input type='keyboard' bus='ps2'/>
|
|
<graphics type='sdl' display=':0.1' xauth='/root/.Xauthority' fullscreen='yes'/>
|
|
<video>
|
|
- <model type='cirrus' vram='16384' heads='1'/>
|
|
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-sdl.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-graphics-sdl.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-sdl.xml
|
|
@@ -27,7 +27,7 @@
|
|
<input type='keyboard' bus='ps2'/>
|
|
<graphics type='sdl' display=':0.1' xauth='/root/.Xauthority'/>
|
|
<video>
|
|
- <model type='vga' vram='16384' heads='1'/>
|
|
+ <model type='vga' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-policy.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-policy.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-policy.xml
|
|
@@ -29,7 +29,7 @@
|
|
<listen type='address' address='::'/>
|
|
</graphics>
|
|
<video>
|
|
- <model type='cirrus' vram='16384' heads='1'/>
|
|
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-sasl.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-sasl.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-sasl.xml
|
|
@@ -29,7 +29,7 @@
|
|
<listen type='address' address='127.0.0.1'/>
|
|
</graphics>
|
|
<video>
|
|
- <model type='cirrus' vram='16384' heads='1'/>
|
|
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-socket.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-socket.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-socket.xml
|
|
@@ -27,7 +27,7 @@
|
|
<input type='keyboard' bus='ps2'/>
|
|
<graphics type='vnc' socket='/tmp/foo.socket'/>
|
|
<video>
|
|
- <model type='cirrus' vram='16384' heads='1'/>
|
|
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-tls.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-tls.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-tls.xml
|
|
@@ -29,7 +29,7 @@
|
|
<listen type='address' address='127.0.0.1'/>
|
|
</graphics>
|
|
<video>
|
|
- <model type='cirrus' vram='16384' heads='1'/>
|
|
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-websocket.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-websocket.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc-websocket.xml
|
|
@@ -22,7 +22,7 @@
|
|
<listen type='address' address='127.0.0.1'/>
|
|
</graphics>
|
|
<video>
|
|
- <model type='cirrus' vram='16384' heads='1'/>
|
|
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-graphics-vnc.xml
|
|
@@ -29,7 +29,7 @@
|
|
<listen type='address' address='2001:1:2:3:4:5:1234:1234'/>
|
|
</graphics>
|
|
<video>
|
|
- <model type='cirrus' vram='16384' heads='1'/>
|
|
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
Index: libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-pseries-disk.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/qemuargv2xmldata/qemuargv2xml-pseries-disk.xml
|
|
+++ libvirt-1.3.3/tests/qemuargv2xmldata/qemuargv2xml-pseries-disk.xml
|
|
@@ -34,7 +34,7 @@
|
|
<input type='mouse' bus='usb'/>
|
|
<graphics type='sdl'/>
|
|
<video>
|
|
- <model type='cirrus' vram='16384' heads='1'/>
|
|
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
|
|
</video>
|
|
<memballoon model='none'/>
|
|
<panic model='pseries'/>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-annotation.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-annotation.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-annotation.xml
|
|
@@ -13,7 +13,7 @@
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-case-insensitive-1.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-case-insensitive-1.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-case-insensitive-1.xml
|
|
@@ -26,7 +26,7 @@
|
|
<source bridge='VM NETWORK'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-case-insensitive-2.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-case-insensitive-2.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-case-insensitive-2.xml
|
|
@@ -26,7 +26,7 @@
|
|
<source bridge='vm network'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-device.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-ide-device.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-device.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='ide' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-empty.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-ide-empty.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-empty.xml
|
|
@@ -17,7 +17,7 @@
|
|
</disk>
|
|
<controller type='ide' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-file.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-ide-file.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-file.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='ide' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-raw-auto-detect.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-ide-raw-auto-detect.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-raw-auto-detect.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='ide' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-raw-device.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-ide-raw-device.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-ide-raw-device.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='ide' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-device.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-scsi-device.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-device.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='scsi' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-empty.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-scsi-empty.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-empty.xml
|
|
@@ -17,7 +17,7 @@
|
|
</disk>
|
|
<controller type='scsi' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-file.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-scsi-file.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-file.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='scsi' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-passthru.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-scsi-passthru.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-passthru.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='scsi' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-raw-auto-detect.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-scsi-raw-auto-detect.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-raw-auto-detect.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='scsi' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-raw-device.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-cdrom-scsi-raw-device.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-cdrom-scsi-raw-device.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='scsi' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-datacenterpath.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-datacenterpath.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-datacenterpath.xml
|
|
@@ -12,7 +12,7 @@
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
<vmware:datacenterpath>folder1/folder2/datacenter1</vmware:datacenterpath>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-1.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-1.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-1.xml
|
|
@@ -26,7 +26,7 @@
|
|
<source bridge='VM Network'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-2.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-2.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-2.xml
|
|
@@ -53,7 +53,7 @@
|
|
<model type='vlance'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-3.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-3.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-3.xml
|
|
@@ -35,7 +35,7 @@
|
|
<source bridge='VM Network'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-4.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-4.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-4.xml
|
|
@@ -42,7 +42,7 @@
|
|
<target type='serial' port='0'/>
|
|
</console>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-5.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-5.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-5.xml
|
|
@@ -37,7 +37,7 @@
|
|
<model type='e1000'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-6.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-6.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-6.xml
|
|
@@ -30,7 +30,7 @@
|
|
<model type='vmxnet3'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='8192'/>
|
|
+ <model type='vmvga' vram='8192' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-7.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-7.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-esx-in-the-wild-7.xml
|
|
@@ -29,7 +29,7 @@
|
|
<model type='vmxnet3'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='8192'/>
|
|
+ <model type='vmvga' vram='8192' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-bridged.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-bridged.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-bridged.xml
|
|
@@ -16,7 +16,7 @@
|
|
<source bridge='VM Network'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-custom.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-custom.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-custom.xml
|
|
@@ -17,7 +17,7 @@
|
|
<target dev='vmnet7'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-e1000.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-e1000.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-e1000.xml
|
|
@@ -17,7 +17,7 @@
|
|
<model type='e1000'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-generated.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-generated.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-generated.xml
|
|
@@ -16,7 +16,7 @@
|
|
<source bridge='VM Network'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-nat.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-nat.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-nat.xml
|
|
@@ -15,7 +15,7 @@
|
|
<mac address='00:50:56:11:22:33'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-other.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-other.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-other.xml
|
|
@@ -16,7 +16,7 @@
|
|
<source bridge='VM Network'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-static.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-static.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-static.xml
|
|
@@ -16,7 +16,7 @@
|
|
<source bridge='VM Network'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-vmxnet2.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-vmxnet2.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-vmxnet2.xml
|
|
@@ -17,7 +17,7 @@
|
|
<model type='vmxnet2'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-vpx.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ethernet-vpx.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ethernet-vpx.xml
|
|
@@ -16,7 +16,7 @@
|
|
<source bridge='VM Network'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-floppy-device.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-floppy-device.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-floppy-device.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='fdc' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-floppy-file.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-floppy-file.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-floppy-file.xml
|
|
@@ -23,7 +23,7 @@
|
|
</disk>
|
|
<controller type='fdc' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-fusion-in-the-wild-1.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-fusion-in-the-wild-1.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-fusion-in-the-wild-1.xml
|
|
@@ -33,7 +33,7 @@
|
|
<source bridge=''/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-graphics-vnc.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-graphics-vnc.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-graphics-vnc.xml
|
|
@@ -13,7 +13,7 @@
|
|
<devices>
|
|
<graphics type='vnc' port='5903' autoport='no' keymap='de' passwd='password'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-1.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-1.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-1.xml
|
|
@@ -24,7 +24,7 @@
|
|
<target dev='/dev/vmnet1'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-2.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-2.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-2.xml
|
|
@@ -24,7 +24,7 @@
|
|
<target dev='/dev/vmnet1'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-3.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-3.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-3.xml
|
|
@@ -29,7 +29,7 @@
|
|
<target dev='/dev/vmnet2'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-4.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-4.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-gsx-in-the-wild-4.xml
|
|
@@ -24,7 +24,7 @@
|
|
<target dev='/dev/vmnet2'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-harddisk-ide-file.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-harddisk-ide-file.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-harddisk-ide-file.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='ide' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-harddisk-scsi-file.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-harddisk-scsi-file.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-harddisk-scsi-file.xml
|
|
@@ -18,7 +18,7 @@
|
|
</disk>
|
|
<controller type='scsi' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-harddisk-transient.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-harddisk-transient.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-harddisk-transient.xml
|
|
@@ -19,7 +19,7 @@
|
|
</disk>
|
|
<controller type='ide' index='0'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-minimal-64bit.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-minimal-64bit.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-minimal-64bit.xml
|
|
@@ -12,7 +12,7 @@
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-minimal.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-minimal.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-minimal.xml
|
|
@@ -12,7 +12,7 @@
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-parallel-device.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-parallel-device.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-parallel-device.xml
|
|
@@ -16,7 +16,7 @@
|
|
<target port='0'/>
|
|
</parallel>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-parallel-file.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-parallel-file.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-parallel-file.xml
|
|
@@ -16,7 +16,7 @@
|
|
<target port='0'/>
|
|
</parallel>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-scsi-driver.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-scsi-driver.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-scsi-driver.xml
|
|
@@ -36,7 +36,7 @@
|
|
<controller type='scsi' index='2' model='lsisas1068'/>
|
|
<controller type='scsi' index='3' model='vmpvscsi'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-scsi-writethrough.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-scsi-writethrough.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-scsi-writethrough.xml
|
|
@@ -19,7 +19,7 @@
|
|
</disk>
|
|
<controller type='scsi' index='0' model='buslogic'/>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-device.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-serial-device.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-device.xml
|
|
@@ -24,7 +24,7 @@
|
|
<target type='serial' port='0'/>
|
|
</console>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-file.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-serial-file.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-file.xml
|
|
@@ -20,7 +20,7 @@
|
|
<target type='serial' port='0'/>
|
|
</console>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-network-client.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-serial-network-client.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-network-client.xml
|
|
@@ -22,7 +22,7 @@
|
|
<target type='serial' port='0'/>
|
|
</console>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-network-server.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-serial-network-server.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-network-server.xml
|
|
@@ -22,7 +22,7 @@
|
|
<target type='serial' port='0'/>
|
|
</console>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-pipe.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-serial-pipe.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-serial-pipe.xml
|
|
@@ -20,7 +20,7 @@
|
|
<target type='serial' port='0'/>
|
|
</console>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-sharedfolder.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-sharedfolder.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-sharedfolder.xml
|
|
@@ -16,7 +16,7 @@
|
|
<target dir='shared'/>
|
|
</filesystem>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-smbios.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-smbios.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-smbios.xml
|
|
@@ -13,7 +13,7 @@
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-svga.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-svga.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-svga.xml
|
|
@@ -12,7 +12,7 @@
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<video>
|
|
- <model type='vmvga' vram='8192'/>
|
|
+ <model type='vmvga' vram='8192' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ws-in-the-wild-1.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ws-in-the-wild-1.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ws-in-the-wild-1.xml
|
|
@@ -29,7 +29,7 @@
|
|
<model type='e1000'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
Index: libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ws-in-the-wild-2.xml
|
|
===================================================================
|
|
--- libvirt-1.3.3.orig/tests/vmx2xmldata/vmx2xml-ws-in-the-wild-2.xml
|
|
+++ libvirt-1.3.3/tests/vmx2xmldata/vmx2xml-ws-in-the-wild-2.xml
|
|
@@ -30,7 +30,7 @@
|
|
<model type='e1000'/>
|
|
</interface>
|
|
<video>
|
|
- <model type='vmvga' vram='4096'/>
|
|
+ <model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|