forked from libvirt/libvirt
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libxl: implement connectGetDomainCapabilities
Add domain capabilities for PV and HVM domains. Signed-off-by: Jim Fehlig <[email protected]>
- Loading branch information
Showing
8 changed files
with
414 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<domainCapabilities> | ||
<path>/usr/bin/qemu-system-x86_64</path> | ||
<domain>xen</domain> | ||
<machine>xenfv</machine> | ||
<arch>x86_64</arch> | ||
<vcpu max='128'/> | ||
<os supported='yes'> | ||
<loader supported='yes'> | ||
<value>/usr/lib/xen/boot/hvmloader</value> | ||
<value>/usr/lib/xen/boot/ovmf.bin</value> | ||
<enum name='type'> | ||
<value>rom</value> | ||
<value>pflash</value> | ||
</enum> | ||
<enum name='readonly'> | ||
<value>yes</value> | ||
</enum> | ||
</loader> | ||
</os> | ||
<devices> | ||
<disk supported='yes'> | ||
<enum name='diskDevice'> | ||
<value>disk</value> | ||
<value>cdrom</value> | ||
</enum> | ||
<enum name='bus'> | ||
<value>ide</value> | ||
<value>scsi</value> | ||
<value>xen</value> | ||
</enum> | ||
</disk> | ||
<graphics supported='yes'> | ||
<enum name='type'> | ||
<value>sdl</value> | ||
<value>vnc</value> | ||
<value>spice</value> | ||
</enum> | ||
</graphics> | ||
<video supported='yes'> | ||
<enum name='modelType'> | ||
<value>vga</value> | ||
<value>cirrus</value> | ||
<value>xen</value> | ||
</enum> | ||
</video> | ||
<hostdev supported='yes'> | ||
<enum name='mode'> | ||
<value>subsystem</value> | ||
</enum> | ||
<enum name='startupPolicy'> | ||
<value>default</value> | ||
<value>mandatory</value> | ||
<value>requisite</value> | ||
<value>optional</value> | ||
</enum> | ||
<enum name='subsysType'> | ||
<value>pci</value> | ||
</enum> | ||
<enum name='capsType'/> | ||
<enum name='pciBackend'> | ||
<value>xen</value> | ||
</enum> | ||
</hostdev> | ||
</devices> | ||
<features> | ||
<gic supported='no'/> | ||
</features> | ||
</domainCapabilities> |
Oops, something went wrong.