aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2021-09-12 22:07:20 -0700
committerMatt Turner <mattst88@gentoo.org>2021-09-12 22:07:20 -0700
commitbe489a166f78f9cb2e89e8749094a6ddd0310ade (patch)
treee6a715ccc5076e99a9754c8577656a245c66bfa4
parentgen_cmdline.sh: Correctly sort --{kernel,utils}-{as,nm} (diff)
downloadgenkernel-be489a16.tar.gz
genkernel-be489a16.tar.bz2
genkernel-be489a16.zip
gen_cmdline.sh: Add objcopy/objdump/ranlib/readelf/strip to longusage
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rwxr-xr-xgen_cmdline.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/gen_cmdline.sh b/gen_cmdline.sh
index e3c985e1..e53de690 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"