mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 23:25:24 +00:00
6b24755235
All <console> devices now export a <target> type attribute. QEMU defaults to 'serial', UML defaults to 'uml, xen can be either 'serial' or 'xen' depending on fullvirt. Understandably there is lots of test fallout. This will be used to differentiate between a serial vs. virtio console for QEMU. Signed-off-by: Cole Robinson <crobinso@redhat.com>
24 lines
580 B
XML
24 lines
580 B
XML
<domain type='vmware'>
|
|
<uuid>00000000-0000-0000-0000-000000000000</uuid>
|
|
<memory>32768</memory>
|
|
<currentMemory>32768</currentMemory>
|
|
<vcpu>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>
|
|
<serial type='pipe'>
|
|
<source path='serial0.pipe'/>
|
|
<target port='0'/>
|
|
</serial>
|
|
<console type='pipe'>
|
|
<source path='serial0.pipe'/>
|
|
<target type='serial' port='0'/>
|
|
</console>
|
|
</devices>
|
|
</domain>
|