summaryrefslogtreecommitdiff
path: root/config/kernel_linux.in
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-04-17 20:26:25 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-04-17 20:26:25 (GMT)
commitdd862bd7a46c6bb3f1a9d4bda7bf12c81dd7004b (patch)
tree1c7ecabab6f0d3b161b7308a50430d065af84e26 /config/kernel_linux.in
parente53b2f3cbde7e0ef3978f0ab63c2ff42ff9ad807 (diff)
Move config files around, and clean up the mess in the config/ directory.
config/kernel/kernel_linux.in | 12 6 6 0 +- config/paths.in | 89 0 89 0 ---------------- config/kernel_linux_headers_install.in | 168 0 168 0 ------------------------------ config/kernel.in | 2 1 1 0 config/kernel_linux_headers_copy.in | 42 0 42 0 -------- config/cc.in | 2 1 1 0 config/logging.in | 110 0 110 0 -------------------- config/build-behave.in | 45 0 45 0 -------- config/libc_uClibc.in | 101 0 101 0 ------------------ config/kernel_linux_headers_sanitised.in | 62 0 62 0 ----------- config/ct-behave.in | 82 0 82 0 --------------- config/kernel_linux.in | 134 0 134 0 ------------------------ config/global.in | 10 5 5 0 +- config/download_extract.in | 171 0 171 0 ------------------------------- config/cc_gcc.in | 130 0 130 0 ------------------------ config/libc_glibc.in | 124 0 124 0 ---------------------- config/libc.in | 4 2 2 0 17 files changed, 15 insertions(+), 1273 deletions(-)
Diffstat (limited to 'config/kernel_linux.in')
-rw-r--r--config/kernel_linux.in134
1 files changed, 0 insertions, 134 deletions
diff --git a/config/kernel_linux.in b/config/kernel_linux.in
deleted file mode 100644
index 41f6307..0000000
--- a/config/kernel_linux.in
+++ /dev/null
@@ -1,134 +0,0 @@
-# Linux kernel options
-
-choice
- bool
- prompt "Get kernel headers from:"
-
-config KERNEL_LINUX_HEADERS_INSTALL
- bool
- prompt "kernel's 'headers_install'"
- help
- This will make use of the new headers_install rule in recent kernels.
- This is most probably what you want to use.
-
-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 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.
-
- You do NOT want this. It's badly broken because it leaks kernel internals
- to userspace.
-
-config KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR
- bool
- prompt "Use custom directory"
- help
- If you have some kernel headers lying around, you can enter the path
- below.
-
-endchoice
-
-config KERNEL
- string
- default "linux" if ! KERNEL_LINUX_HEADERS_SANITISED
- default "linux-libc-headers" if KERNEL_LINUX_HEADERS_SANITISED
-
-config KERNEL_VERSION_SEE_EXTRAVERSION
- bool
- prompt "See extra versions"
- default n
- depends on KERNEL_LINUX_HEADERS_COPY || KERNEL_LINUX_HEADERS_INSTALL
- help
- See extra versions (kernel with 4 numbers, eg 2.6.19.1).
-
- If you say 'no', you'll only see sub-level, 3-digit versions.
- If you say 'yes', you'll see far more versions!
-
- It is recommended that you say 'no', unless you _*know*_
- that an extra version fixes a headers bug.
-
-if KERNEL_LINUX_HEADERS_INSTALL
-source config/kernel_linux_headers_install.in
-endif
-
-if KERNEL_LINUX_HEADERS_COPY
-source config/kernel_linux_headers_copy.in
-endif
-
-if KERNEL_LINUX_HEADERS_SANITISED
-source config/kernel_linux_headers_sanitised.in
-endif
-
-config KERNEL_LINUX_HEADERS_CUSTOM_DIR
- string
- prompt "Where are those custom headers?"
- depends on KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR
- help
- Enter the base directory where the headers are to be found.
-
- Eg. if the headers are in /some/place/include, then enter /some/place.
- This is the same path you entered when you typed:
- make INSTALL_HDR_PATH=/some/place headers_install
-
-if ! KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR
-
-choice
- bool
- prompt "Kernel verbosity:"
- default KERNEL_LINUX_VERBOSITY_0
-
-config KERNEL_LINUX_VERBOSITY_0
- bool
- prompt "Simplified"
- help
- Print simplified command lines.
-
-config KERNEL_LINUX_VERBOSITY_1
- bool
- prompt "Full commands"
- help
- Print full command lines.
-
-config KERNEL_LINUX_VERBOSITY_2
- bool
- prompt "Exec reasons"
- help
- Print the reasons why a make target is rebuild.
-
-endchoice
-
-config KERNEL_LINUX_VERBOSE_LEVEL
- int
- default 0 if KERNEL_LINUX_VERBOSITY_0
- 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.
-
- If you don't provide one, then the default configuration for
- your target will be used.
-
-endif