- modify virtinst-ppc64le.patch to call qemu-system-ppc64

for ppc64 and ppc64le (bnc#894956)

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=195
This commit is contained in:
Charles Arnold 2014-09-05 14:08:09 +00:00 committed by Git OBS Bridge
parent 096afbb01d
commit 60c0b88363
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Sep 5 12:10:30 CEST 2014 - ro@suse.de
- modify virtinst-ppc64le.patch to call qemu-system-ppc64
for ppc64 and ppc64le (bnc#894956)
-------------------------------------------------------------------
Thu Aug 28 09:25:44 MDT 2014 - carnold@suse.com

View File

@ -13,7 +13,7 @@
if self.conn.is_qemu():
if self.os.arch == "s390x":
preferred_emulator = "/usr/bin/qemu-system-s390x"
+ elif self.os.arch == "ppc64le":
+ elif self.os.arch == "ppc64" or self.os.arch == "ppc64le":
+ preferred_emulator = "/usr/bin/qemu-system-ppc64"
else:
preferred_emulator = "/usr/bin/qemu-system-x86_64"