Drop all references to kqemu, it's long dead

This commit is contained in:
Cole Robinson 2015-04-03 16:26:58 -04:00
parent f5b13a6e19
commit 4e9f70f9b3
2 changed files with 3 additions and 3 deletions

View File

@ -921,7 +921,7 @@ completeness).
=item --virt-type
The hypervisor to install on. Example choices are kvm, qemu, xen, or kqemu.
The hypervisor to install on. Example choices are kvm, qemu, or xen.
Available options are listed via 'virsh capabilities' in the <domain> tags.
This deprecates the --accelerate option, which is now the default behavior. To install a plain QEMU guest, use '--virt-type qemu'

View File

@ -245,7 +245,7 @@ class _CapsDomain(XMLBuilder):
self._recommended_machine = machine
def is_accelerated(self):
return self.hypervisor_type in ["kvm", "kqemu"]
return self.hypervisor_type in ["kvm"]
class _CapsGuestFeatures(XMLBuilder):
@ -311,7 +311,7 @@ class _CapsGuest(XMLBuilder):
if not domains:
return None
priority = ["kvm", "xen", "kqemu", "qemu"]
priority = ["kvm", "xen", "qemu"]
for t in priority:
for d in domains: