9eafa57539
The following list is bollocks. There were many, many more. Conflicts: core-modules/003QubesTemplateVm.py core-modules/005QubesNetVm.py core/qubes.py core/storage/__init__.py core/storage/xen.py doc/qvm-tools/qvm-pci.rst doc/qvm-tools/qvm-prefs.rst qubes/tools/qmemmand.py qvm-tools/qvm-create qvm-tools/qvm-prefs qvm-tools/qvm-start tests/__init__.py vm-config/xen-vm-template-hvm.xml This commit took 2 days (26-27.01.2016) and put our friendship to test. --Wojtek and Marek
39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
<domain type='xen'>
|
|
<name>{name}</name>
|
|
<uuid>{uuid}</uuid>
|
|
<memory unit='MiB'>{maxmem}</memory>
|
|
<currentMemory unit='MiB'>{mem}</currentMemory>
|
|
<vcpu placement='static'>{vcpus}</vcpu>
|
|
<os>
|
|
<type arch='x86_64' machine='xenfv'>hvm</type>
|
|
<loader>hvmloader</loader>
|
|
<boot dev='cdrom'/>
|
|
<boot dev='hd'/>
|
|
</os>
|
|
<features>
|
|
<pae/>
|
|
<acpi/>
|
|
<apic/>
|
|
<viridian/>
|
|
</features>
|
|
<clock offset='variable' adjustment='{timeoffset}' basis='{time_basis}'/>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>destroy</on_reboot>
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
{no_network_begin}<emulator type='stubdom'/>{no_network_end}
|
|
<!-- server_ip is the address of stubdomain. It hosts it's own DNS server. -->
|
|
{network_begin}<emulator type='stubdom' cmdline='-net lwip,client_ip={ip},server_ip={dns2},dns={dns1},gw={gateway},netmask={netmask}'/>{network_end}
|
|
{rootdev}
|
|
{privatedev}
|
|
{otherdevs}
|
|
{netdev}
|
|
{pcidevs}
|
|
<input type='tablet' bus='usb'/>
|
|
<video type='vga'>
|
|
<model type='xen' vram='16384'/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|
|
|