mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
20311a9af8
The most common cause of errors with rhel5-api turn on was missing "(type ioemu)" in sexpr or its equivalent in XM configuration file. This happens because the presence of that part in sexpr (or cfg) depends on xen version the host is running. Let's avoid it by explicitly specifying interface model which ensures "type ioemu" will always be emitted. This patch adds <model type='e1000'/> withing the interface element in all affected xml files. And (model 'e1000') to all corresponding sexpr files with similar fix to cfg files. Such configuration works regardless on Xen version.
41 lines
1.0 KiB
XML
41 lines
1.0 KiB
XML
<domain type='xen'>
|
|
<name>fvtest</name>
|
|
<uuid>b5d70dd275cdaca517769660b059d8bc</uuid>
|
|
<os>
|
|
<type>hvm</type>
|
|
<loader>/usr/lib/xen/boot/hvmloader</loader>
|
|
<boot dev='hd'/>
|
|
</os>
|
|
<memory>409600</memory>
|
|
<vcpu>1</vcpu>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>restart</on_reboot>
|
|
<on_crash>restart</on_crash>
|
|
<features>
|
|
<acpi/>
|
|
</features>
|
|
<devices>
|
|
<emulator>/usr/lib64/xen/bin/qemu-dm</emulator>
|
|
<interface type='bridge'>
|
|
<source bridge='xenbr0'/>
|
|
<mac address='00:16:3e:1b:b1:47'/>
|
|
<script path='vif-bridge'/>
|
|
<model type='e1000'/>
|
|
</interface>
|
|
<disk type='file' device='cdrom'>
|
|
<source file='/root/boot.iso'/>
|
|
<target dev='hdc'/>
|
|
<readonly/>
|
|
</disk>
|
|
<disk type='file'>
|
|
<source file='/root/foo.img'/>
|
|
<target dev='ioemu:hda'/>
|
|
</disk>
|
|
<serial type='tcp'>
|
|
<source mode='bind' host='localhost' service='9999' wiremode='raw'/>
|
|
<target port='0'/>
|
|
</serial>
|
|
<graphics type='vnc' port='5917' keymap='ja'/>
|
|
</devices>
|
|
</domain>
|