Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Mon, 13 Sep 2021 05:08:33
Message-Id: 1631509640.be489a166f78f9cb2e89e8749094a6ddd0310ade.mattst88@gentoo
1 commit: be489a166f78f9cb2e89e8749094a6ddd0310ade
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 13 05:07:20 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 13 05:07:20 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=be489a16
7
8 gen_cmdline.sh: Add objcopy/objdump/ranlib/readelf/strip to longusage
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gen_cmdline.sh | 10 ++++++++++
13 1 file changed, 10 insertions(+)
14
15 diff --git a/gen_cmdline.sh b/gen_cmdline.sh
16 index e3c985e..e53de69 100755
17 --- a/gen_cmdline.sh
18 +++ b/gen_cmdline.sh
19 @@ -92,6 +92,11 @@ longusage() {
20 echo " --kernel-ld=<linker> Linker to use for kernel"
21 echo " --kernel-make=<makeprg> GNU Make to use for kernel"
22 echo " --kernel-nm=<nm> NM utility to use for kernel"
23 + echo " --kernel-objcopy=<objcopy> OBJCOPY utility to use for kernel"
24 + echo " --kernel-objdump=<objdump> OBJDUMP utility to use for kernel"
25 + echo " --kernel-ranlib=<ranlib> RANLIB utility to use for kernel"
26 + echo " --kernel-readelf=<readelf> READELF utility to use for kernel"
27 + echo " --kernel-strip=<strip> STRIP utility to use for kernel"
28 echo " --kernel-target=<t> Override default make target (bzImage)"
29 echo " --kernel-binary=<path> Override default kernel binary path (arch/foo/boot/bar)"
30 echo " --kernel-outputdir=<path>"
31 @@ -104,6 +109,11 @@ longusage() {
32 echo " --utils-ld=<linker> Linker to use for utils"
33 echo " --utils-make=<makeprog> GNU Make to use for utils"
34 echo " --utils-nm=<nm> NM utility to use for utils"
35 + echo " --utils-objcopy=<objcopy> OBJCOPY utility to use for utils"
36 + echo " --utils-objdump=<objdump> OBJDUMP utility to use for utils"
37 + echo " --utils-ranlib=<ranlib> RANLIB utility to use for utils"
38 + echo " --utils-readelf=<readelf> READELF utility to use for utils"
39 + echo " --utils-strip=<strip> STRIP utility to use for utils"
40 echo " --makeopts=<makeopts> Make options such as -j2, etc ..."
41 echo " --mountboot Mount BOOTDIR automatically if mountable"
42 echo " --no-mountboot Don't mount BOOTDIR automatically"