summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--eclass/kernel-install.eclass5
1 files changed, 5 insertions, 0 deletions
diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass
index a8d3d77cb6b4..f834670d4574 100644
--- a/eclass/kernel-install.eclass
+++ b/eclass/kernel-install.eclass
@@ -111,6 +111,11 @@ kernel-install_get_image_path() {
arm)
echo arch/arm/boot/zImage
;;
+ ppc64)
+ # ./ is required because of ${image_path%/*}
+ # substitutions in the code
+ echo ./vmlinux
+ ;;
*)
die "${FUNCNAME}: unsupported ARCH=${ARCH}"
;;