qemu: Fix Qemu binary path for Power across distros

The default ppc64le Qemu binary path was specific for Ubuntu.
This patch fixes the default binary path for both Fedora and Ubuntu

Fixes: #2738

Signed-off-by: bpradipt@in.ibm.com
This commit is contained in:
Pradipta Kr. Banerjee
2020-06-22 06:35:03 +00:00
parent 46f2618340
commit b4d3a0af87
2 changed files with 2 additions and 2 deletions

View File

@@ -9,4 +9,4 @@ MACHINETYPE := pseries
KERNELPARAMS :=
MACHINEACCELERATORS :=
KERNELTYPE := uncompressed #This architecture must use an uncompressed kernel.
QEMUCMD := qemu-system-ppc64le
QEMUCMD := qemu-system-ppc64

View File

@@ -18,7 +18,7 @@ type qemuPPC64le struct {
qemuArchBase
}
const defaultQemuPath = "/usr/bin/qemu-system-ppc64le"
const defaultQemuPath = "/usr/bin/qemu-system-ppc64"
const defaultQemuMachineType = QemuPseries