diff options
Diffstat (limited to 'eclass/kernel-install.eclass')
-rw-r--r-- | eclass/kernel-install.eclass | 5 |
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}" ;; |