Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sun, 08 May 2022 17:15:00
Message-Id: 1652030067.b5e5f6ca899453cb51095f82fd8a57df47b84737.sam@gentoo
1 commit: b5e5f6ca899453cb51095f82fd8a57df47b84737
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 8 17:14:27 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun May 8 17:14:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5e5f6ca
7
8 dist-kernel-utils.eclass: add riscv kernel image path
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 eclass/dist-kernel-utils.eclass | 3 +++
13 1 file changed, 3 insertions(+)
14
15 diff --git a/eclass/dist-kernel-utils.eclass b/eclass/dist-kernel-utils.eclass
16 index 71c96a37e642..d192c31db273 100644
17 --- a/eclass/dist-kernel-utils.eclass
18 +++ b/eclass/dist-kernel-utils.eclass
19 @@ -78,6 +78,9 @@ dist-kernel_get_image_path() {
20 # substitutions in the code
21 echo ./vmlinux
22 ;;
23 + riscv)
24 + echo arch/riscv/boot/Image.gz
25 + ;;
26 *)
27 die "${FUNCNAME}: unsupported ARCH=${ARCH}"
28 ;;