aboutsummaryrefslogtreecommitdiff
path: root/ia64
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2007-11-07 21:38:12 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2007-11-07 21:38:12 +0000
commitfba39b8f1146a6eecc8430fa459bdaa5216948c4 (patch)
tree9a574be325f3a1e7dc574a4d8033865a0d96e5ea /ia64
parentFixed the noload module code. Thanks to Mijail Fedorovich <mfedorovich@gmail... (diff)
downloadgenkernel-fba39b8f1146a6eecc8430fa459bdaa5216948c4.tar.gz
genkernel-fba39b8f1146a6eecc8430fa459bdaa5216948c4.tar.bz2
genkernel-fba39b8f1146a6eecc8430fa459bdaa5216948c4.zip
Added a nice patch from John R. Graham <john_r_graham@mindspring.com> to allow all command line options to be configurable from within the genkernel.conf file. This is for bug #182616. This is genkernel 3.4.9_pre8 for testing.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@557 67a159dc-881f-0410-a524-ba9dfbe2cb84
Diffstat (limited to 'ia64')
-rw-r--r--ia64/config.sh27
1 files changed, 17 insertions, 10 deletions
diff --git a/ia64/config.sh b/ia64/config.sh
index 1204d95..0373b27 100644
--- a/ia64/config.sh
+++ b/ia64/config.sh
@@ -1,20 +1,27 @@
#!/bin/bash
+#
+# Arch-specific options that normally shouldn't be changed.
+#
KERNEL_MAKE_DIRECTIVE=""
KERNEL_MAKE_DIRECTIVE_2=""
KERNEL_BINARY="vmlinux.gz"
-[ -z "${MAKEOPTS}" ] && MAKEOPTS="-j2"
+COMPRESS_INITRD=yes
-KERNEL_MAKE=make
-UTILS_MAKE=make
+#
+# Arch-specific defaults that can be overridden in the config file or on the
+# command line.
+#
+DEFAULT_MAKEOPTS="-j2"
-KERNEL_CC=gcc
-KERNEL_AS=as
-KERNEL_LD=ld
+DEFAULT_KERNEL_MAKE=make
+DEFAULT_UTILS_MAKE=make
-UTILS_CC=gcc
-UTILS_AS=as
-UTILS_LD=ld
+DEFAULT_KERNEL_CC=gcc
+DEFAULT_KERNEL_AS=as
+DEFAULT_KERNEL_LD=ld
-COMPRESS_INITRD=yes
+DEFAULT_UTILS_CC=gcc
+DEFAULT_UTILS_AS=as
+DEFAULT_UTILS_LD=ld