Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
qemu: Fix Qemu binary path for Power across distros
Browse files Browse the repository at this point in the history
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: [email protected]
(cherry picked from commit 54e8fdb)
  • Loading branch information
bpradipt committed Jun 8, 2020
1 parent 984ccea commit 2c3b344
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/ppc64le-options.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion virtcontainers/qemu_ppc64le.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2c3b344

Please sign in to comment.