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]
  • Loading branch information
bpradipt committed Jun 3, 2020
1 parent 7a4925f commit 54e8fdb
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 @@ -11,4 +11,4 @@ MACHINEACCELERATORS := "cap-cfpc=broken,cap-sbbc=broken,cap-ibs=broken,cap-large
CPUFEATURES :=

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 54e8fdb

Please sign in to comment.