From b45a0ce2867f2ae4fb28c27c31c49dc30175db7b Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 28 Sep 2015 20:00:01 -0400 Subject: [PATCH] create: Show TCG vs KVM for aarch64 too Since it can be used for arm32 installs as well. Requested here; https://bugzilla.redhat.com/show_bug.cgi?id=1214592#c4 --- virtManager/create.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/virtManager/create.py b/virtManager/create.py index 36933da29..79a750c3e 100644 --- a/virtManager/create.py +++ b/virtManager/create.py @@ -805,12 +805,12 @@ class vmmCreate(vmmGObjectUI): model.clear() # Allow choosing between qemu and kvm for archs that traditionally - # have a decent amount of TCG usage, like armv7l + # have a decent amount of TCG usage, like armv7l. Also include + # aarch64 which can be used for arm32 VMs as well domains = [d.hypervisor_type for d in self._capsinfo.guest.domains[:]] if not self.conn.is_qemu(): domains = [] - elif self._capsinfo.arch in ["i686", "x86_64", "aarch64", - "ppc64", "ppc64le"]: + elif self._capsinfo.arch in ["i686", "x86_64", "ppc64", "ppc64le"]: domains = [] default = 0