summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-07 21:45:31 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-07 21:45:31 (GMT)
commit13e8e5c77306851b56744e24787b515c9b7bdbb7 (patch)
tree808f57922dc402b4382b6b4f16a850b85e43b036 /config
parentef65aeae8fb0760baac836a0de4501dfae6c7261 (diff)
Simplify kernel config file need.
Don't build a default config file when not needed.
Diffstat (limited to 'config')
-rw-r--r--config/kernel_linux.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/config/kernel_linux.in b/config/kernel_linux.in
index 9394300..41f6307 100644
--- a/config/kernel_linux.in
+++ b/config/kernel_linux.in
@@ -15,15 +15,17 @@ config KERNEL_LINUX_HEADERS_SANITISED
bool
prompt "Mazur's sanitized headers (OBSOLETE)"
depends on OBSOLETE
+ select KERNEL_LINUX_NEEDS_CONFIG
help
M. Mazur used to maintain a tree of sanitised headers, but it is now
- obsoleted by the headers_install rule (above), and has not seen eny
+ obsoleted by the headers_install rule (above), and has not seen any
update since 2.6.12
config KERNEL_LINUX_HEADERS_COPY
bool
prompt "pure kernel headers (REALLY OBSOLETE)"
depends on OBSOLETE
+ select KERNEL_LINUX_NEEDS_CONFIG
help
This will simply copy the kernel headers to the toolchain.
@@ -114,9 +116,14 @@ config KERNEL_LINUX_VERBOSE_LEVEL
default 1 if KERNEL_LINUX_VERBOSITY_1
default 2 if KERNEL_LINUX_VERBOSITY_2
+config KERNEL_LINUX_NEEDS_CONFIG
+ bool
+ default n
+
config KERNEL_LINUX_CONFIG_FILE
string
prompt "Configuration file"
+ depends on KERNEL_LINUX_NEEDS_CONFIG
default ""
help
Path to a kernel configuration file.