mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-05 12:35:20 +00:00
9bf5347469
Commit119cd06
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. (cherry picked from commit6d8b6d2847
)
43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<domain type='vmware'>
|
|
<uuid>00000000-0000-0000-0000-000000000000</uuid>
|
|
<memory unit='KiB'>32768</memory>
|
|
<currentMemory unit='KiB'>32768</currentMemory>
|
|
<vcpu placement='static'>1</vcpu>
|
|
<os>
|
|
<type arch='i686'>hvm</type>
|
|
</os>
|
|
<clock offset='utc'/>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>restart</on_reboot>
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<disk type='file' device='disk'>
|
|
<source file='[datastore] directory/harddisk1.vmdk'/>
|
|
<target dev='sda' bus='scsi'/>
|
|
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
|
</disk>
|
|
<disk type='file' device='disk'>
|
|
<source file='[datastore] directory/harddisk2.vmdk'/>
|
|
<target dev='sdp' bus='scsi'/>
|
|
<address type='drive' controller='1' bus='0' target='0' unit='0'/>
|
|
</disk>
|
|
<disk type='file' device='disk'>
|
|
<source file='[datastore] directory/harddisk3.vmdk'/>
|
|
<target dev='sdae' bus='scsi'/>
|
|
<address type='drive' controller='2' bus='0' target='0' unit='0'/>
|
|
</disk>
|
|
<disk type='file' device='disk'>
|
|
<source file='[datastore] directory/harddisk4.vmdk'/>
|
|
<target dev='sdat' bus='scsi'/>
|
|
<address type='drive' controller='3' bus='0' target='0' unit='0'/>
|
|
</disk>
|
|
<controller type='scsi' index='0' model='buslogic'/>
|
|
<controller type='scsi' index='1' model='lsilogic'/>
|
|
<controller type='scsi' index='2' model='lsisas1068'/>
|
|
<controller type='scsi' index='3' model='vmpvscsi'/>
|
|
<video>
|
|
<model type='vmvga' vram='4096' primary='yes'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|