commit: be489a166f78f9cb2e89e8749094a6ddd0310ade Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Mon Sep 13 05:07:20 2021 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Mon Sep 13 05:07:20 2021 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=be489a16
gen_cmdline.sh: Add objcopy/objdump/ranlib/readelf/strip to longusage Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> gen_cmdline.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/gen_cmdline.sh b/gen_cmdline.sh index e3c985e..e53de69 100755 --- a/gen_cmdline.sh +++ b/gen_cmdline.sh @@ -92,6 +92,11 @@ longusage() { echo " --kernel-ld=<linker> Linker to use for kernel" echo " --kernel-make=<makeprg> GNU Make to use for kernel" echo " --kernel-nm=<nm> NM utility to use for kernel" + echo " --kernel-objcopy=<objcopy> OBJCOPY utility to use for kernel" + echo " --kernel-objdump=<objdump> OBJDUMP utility to use for kernel" + echo " --kernel-ranlib=<ranlib> RANLIB utility to use for kernel" + echo " --kernel-readelf=<readelf> READELF utility to use for kernel" + echo " --kernel-strip=<strip> STRIP utility to use for kernel" echo " --kernel-target=<t> Override default make target (bzImage)" echo " --kernel-binary=<path> Override default kernel binary path (arch/foo/boot/bar)" echo " --kernel-outputdir=<path>" @@ -104,6 +109,11 @@ longusage() { echo " --utils-ld=<linker> Linker to use for utils" echo " --utils-make=<makeprog> GNU Make to use for utils" echo " --utils-nm=<nm> NM utility to use for utils" + echo " --utils-objcopy=<objcopy> OBJCOPY utility to use for utils" + echo " --utils-objdump=<objdump> OBJDUMP utility to use for utils" + echo " --utils-ranlib=<ranlib> RANLIB utility to use for utils" + echo " --utils-readelf=<readelf> READELF utility to use for utils" + echo " --utils-strip=<strip> STRIP utility to use for utils" echo " --makeopts=<makeopts> Make options such as -j2, etc ..." echo " --mountboot Mount BOOTDIR automatically if mountable" echo " --no-mountboot Don't mount BOOTDIR automatically"