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
This commit is contained in:
Cole Robinson 2015-09-28 20:00:01 -04:00
parent f371ac0de3
commit b45a0ce286
1 changed files with 3 additions and 3 deletions

View File

@ -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