From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 79A5B158092 for ; Mon, 13 Sep 2021 05:08:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1D14E084A; Mon, 13 Sep 2021 05:08:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B4970E0855 for ; Mon, 13 Sep 2021 05:08:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FDD5342E19 for ; Mon, 13 Sep 2021 05:08:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDC7BBE for ; Mon, 13 Sep 2021 05:08:29 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1631509640.be489a166f78f9cb2e89e8749094a6ddd0310ade.mattst88@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_cmdline.sh X-VCS-Directories: / X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: be489a166f78f9cb2e89e8749094a6ddd0310ade X-VCS-Branch: master Date: Mon, 13 Sep 2021 05:08:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8f473d4e-acb9-4d78-8d12-bad319af9a68 X-Archives-Hash: 2648e108525bb4b4c2483fdf2eb33d85 commit: be489a166f78f9cb2e89e8749094a6ddd0310ade Author: Matt Turner gentoo org> AuthorDate: Mon Sep 13 05:07:20 2021 +0000 Commit: Matt Turner gentoo 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 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 to use for kernel" echo " --kernel-make= GNU Make to use for kernel" echo " --kernel-nm= NM utility to use for kernel" + echo " --kernel-objcopy= OBJCOPY utility to use for kernel" + echo " --kernel-objdump= OBJDUMP utility to use for kernel" + echo " --kernel-ranlib= RANLIB utility to use for kernel" + echo " --kernel-readelf= READELF utility to use for kernel" + echo " --kernel-strip= STRIP utility to use for kernel" echo " --kernel-target= Override default make target (bzImage)" echo " --kernel-binary= Override default kernel binary path (arch/foo/boot/bar)" echo " --kernel-outputdir=" @@ -104,6 +109,11 @@ longusage() { echo " --utils-ld= Linker to use for utils" echo " --utils-make= GNU Make to use for utils" echo " --utils-nm= NM utility to use for utils" + echo " --utils-objcopy= OBJCOPY utility to use for utils" + echo " --utils-objdump= OBJDUMP utility to use for utils" + echo " --utils-ranlib= RANLIB utility to use for utils" + echo " --utils-readelf= READELF utility to use for utils" + echo " --utils-strip= STRIP utility to use for utils" echo " --makeopts= Make options such as -j2, etc ..." echo " --mountboot Mount BOOTDIR automatically if mountable" echo " --no-mountboot Don't mount BOOTDIR automatically"