mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-11 05:17:59 +03:00
Drop all references to kqemu, it's long dead
This commit is contained in:
parent
f5b13a6e19
commit
4e9f70f9b3
@ -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'
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user