mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-22 13:34:07 +03:00
435c7181f1
And move the path to not be rooted in /dev, which doesn't make sense for a directory pool, and triggers some special /dev handling in virtinst that we don't want in the common testing path. Signed-off-by: Cole Robinson <crobinso@redhat.com>
29 lines
844 B
XML
29 lines
844 B
XML
<domain type="qemu">
|
|
<name>vm-arm</name>
|
|
<uuid>00000000-1111-2222-3333-444444444444</uuid>
|
|
<memory>65536</memory>
|
|
<currentMemory>65536</currentMemory>
|
|
<vcpu>1</vcpu>
|
|
<os>
|
|
<type arch="armv7l" machine="vexpress-a9">hvm</type>
|
|
<kernel>/f19-arm.kernel</kernel>
|
|
<initrd>/f19-arm.initrd</initrd>
|
|
<cmdline>console=ttyAMA0 rw root=/dev/mmcblk0p3</cmdline>
|
|
<dtb>/f19-arm.dtb</dtb>
|
|
</os>
|
|
<clock offset="utc"/>
|
|
<devices>
|
|
<emulator>/usr/bin/qemu-system-arm</emulator>
|
|
<disk type="file" device="disk">
|
|
<driver name="qemu" type="qcow2"/>
|
|
<source file="/pool-dir/testvol1.img"/>
|
|
<target dev="sda" bus="sd"/>
|
|
</disk>
|
|
<interface type="bridge">
|
|
<source bridge="testsuitebr0"/>
|
|
<mac address="00:11:22:33:44:55"/>
|
|
</interface>
|
|
<console type="pty"/>
|
|
</devices>
|
|
</domain>
|