aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2021-07-06 22:22:12 +0200
committerThomas Deutschmann <whissi@gentoo.org>2021-07-06 22:59:30 +0200
commita30b7139cfad7261c84345b136c671744e64ec29 (patch)
treecd77d0aa59c76cc8df85567aafe759d67fbe1dbb /genkernel.conf
parentgenkernel: Bump to v4.2.2 (diff)
downloadgenkernel-a30b7139cfad7261c84345b136c671744e64ec29.tar.gz
genkernel-a30b7139cfad7261c84345b136c671744e64ec29.tar.bz2
genkernel-a30b7139cfad7261c84345b136c671744e64ec29.zip
gen_cmdline.sh: parse_cmdline(): Allow to override AS, AR, NM & Co via CLIv4.2.2
Bug: https://bugs.gentoo.org/786405 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'genkernel.conf')
-rw-r--r--genkernel.conf38
1 files changed, 26 insertions, 12 deletions
diff --git a/genkernel.conf b/genkernel.conf
index 6c350a64..7d104962 100644
--- a/genkernel.conf
+++ b/genkernel.conf
@@ -193,23 +193,34 @@ NOCOLOR="false"
# =========Low Level Compile Settings=========
#
-# GNU Make to use for kernel. See also the --kernel-make command line option.
-#KERNEL_MAKE="make"
+# Assembler to use for the kernel. See also the --kernel-as command line
+# option.
+#KERNEL_AS="as"
+
+# Archiver to use for the kernel. See also the --kernel-ar command line
+# option.
+#KERNEL_AR="ar"
# Compiler to use for the kernel (e.g. distcc). See also the --kernel-cc
# command line option.
#KERNEL_CC="gcc"
-# Assembler to use for the kernel. See also the --kernel-as command line
-# option.
-#KERNEL_AS="as"
-
# Linker to use for the kernel. See also the --kernel-ld command line option.
#KERNEL_LD="ld"
-# GNU Make to use for the utilities. See also the --utils-make command line
+# NM utility to use for the kernel. See also the --kernel-nm command line option.
+#KERNEL_NM="nm"
+
+# GNU Make to use for kernel. See also the --kernel-make command line option.
+#KERNEL_MAKE="make"
+
+# Assembler to use for the utilities. See also the --utils-as command line
# option.
-#UTILS_MAKE="make"
+#UTILS_AS="as"
+
+# Archiver to use for the utilities. See also the --utils-ar command line
+# option.
+#UTILS_AR="ar"
# C Compiler to use for the utilities (e.g. distcc). See also the --utils-cc
# command line option.
@@ -219,14 +230,17 @@ NOCOLOR="false"
# command line option.
#UTILS_CXX="g++"
-# Assembler to use for the utilities. See also the --utils-as command line
-# option.
-#UTILS_AS="as"
-
# Linker to use for the utilities. See also the --utils-ld command line
# option.
#UTILS_LD="ld"
+# NM utility to use for the utilities. See also the --utils-nm command line option.
+#UTILS_NM="nm"
+
+# GNU Make to use for the utilities. See also the --utils-make command line
+# option.
+#UTILS_MAKE="make"
+
# Target triple (i.e. aarch64-linux-gnu) to build for. If you do not
# cross-compile, leave blank for auto detection.
#CROSS_COMPILE=""