diff options
author | Sam James <sam@gentoo.org> | 2023-07-21 01:38:07 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-07-21 18:56:50 +0100 |
commit | b723d7642057b863e8b3f25ff19b3ad9c4f2f160 (patch) | |
tree | 6947a9329c73fcf9ba29e6bb6e3a3799de0088f2 /eclass | |
parent | toolchain-funcs.eclass: tc-ninja_magic_to_arch: rename helper function (diff) | |
download | gentoo-b723d7642057b863e8b3f25ff19b3ad9c4f2f160.tar.gz gentoo-b723d7642057b863e8b3f25ff19b3ad9c4f2f160.tar.bz2 gentoo-b723d7642057b863e8b3f25ff19b3ad9c4f2f160.zip |
dist-kernel-utils.eclass: dist-kernel_get_image_path: handle sparc
Same as hppa/ppc*.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/dist-kernel-utils.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/dist-kernel-utils.eclass b/eclass/dist-kernel-utils.eclass index cb0021f8b3a7..666896028669 100644 --- a/eclass/dist-kernel-utils.eclass +++ b/eclass/dist-kernel-utils.eclass @@ -77,7 +77,7 @@ dist-kernel_get_image_path() { arm) echo arch/arm/boot/zImage ;; - hppa|ppc|ppc64) + hppa|ppc|ppc64|sparc) # https://www.kernel.org/doc/html/latest/powerpc/bootwrapper.html # ./ is required because of ${image_path%/*} # substitutions in the code |