diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-12-16 13:02:48 -0800 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-12-16 13:45:32 -0800 |
commit | a632e2f5848755b7eb7b394d4dc760207a43fe3b (patch) | |
tree | 49dcbd3a9e94a4bf31f4037e7687ac533e7fb498 /eclass | |
parent | dev-util/pahole: keyword 1.22 for ~ppc (diff) | |
download | gentoo-a632e2f5848755b7eb7b394d4dc760207a43fe3b.tar.gz gentoo-a632e2f5848755b7eb7b394d4dc760207a43fe3b.tar.bz2 gentoo-a632e2f5848755b7eb7b394d4dc760207a43fe3b.zip |
dist-kernel-utils.eclass: add ppc(32) support
Bug: https://bugs.gentoo.org/794799
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/dist-kernel-utils.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/dist-kernel-utils.eclass b/eclass/dist-kernel-utils.eclass index 9ab65b097b32..f514a3da65a9 100644 --- a/eclass/dist-kernel-utils.eclass +++ b/eclass/dist-kernel-utils.eclass @@ -72,7 +72,8 @@ dist-kernel_get_image_path() { arm) echo arch/arm/boot/zImage ;; - ppc64) + ppc|ppc64) + # https://www.kernel.org/doc/html/latest/powerpc/bootwrapper.html # ./ is required because of ${image_path%/*} # substitutions in the code echo ./vmlinux |