mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-08 07:03:02 -06:00
Add support for hvf domain type
This commit is contained in:
parent
4e2bec5b14
commit
b9f9f768fc
@ -220,6 +220,8 @@ class vmmConnection(vmmGObject):
|
||||
label = "QEMU TCG"
|
||||
elif domtype == "kvm":
|
||||
label = "KVM"
|
||||
elif domtype == "hvf":
|
||||
label = "Hypervisor.framework"
|
||||
|
||||
return label
|
||||
|
||||
|
@ -236,7 +236,7 @@ class Capabilities(XMLBuilder):
|
||||
if not domains:
|
||||
return None
|
||||
|
||||
priority = ["kvm", "xen", "qemu"]
|
||||
priority = ["kvm", "xen", "hvf", "qemu"]
|
||||
|
||||
for t in priority:
|
||||
for d in domains:
|
||||
|
Loading…
Reference in New Issue
Block a user