diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-09-15 12:08:01 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-09-15 12:08:01 +0000 |
commit | 48c1e7781921e264931c1f740fa65fd8d91ffd28 (patch) | |
tree | 5bbcb8ba29fd5b9d78993a7d72e4e8d2da022a1c | |
parent | 46bd8b45c7d6c732e83dd407395a678ae727ea38 (diff) | |
download | crosstool-ng-48c1e7781921e264931c1f740fa65fd8d91ffd28.tar.gz crosstool-ng-48c1e7781921e264931c1f740fa65fd8d91ffd28.tar.bz2 crosstool-ng-48c1e7781921e264931c1f740fa65fd8d91ffd28.zip |
Code-reorder in the Linux kernel config options.
/trunk/config/kernel/linux.in | 32 15 17 0 +++++++++++++++-----------------
1 file changed, 15 insertions(+), 17 deletions(-)
-rw-r--r-- | config/kernel/linux.in | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/config/kernel/linux.in b/config/kernel/linux.in index 3f9bc635..c25d19f9 100644 --- a/config/kernel/linux.in +++ b/config/kernel/linux.in @@ -20,6 +20,8 @@ config KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR endchoice +if KERNEL_LINUX_HEADERS_INSTALL + config KERNEL_VERSION_SEE_EXTRAVERSION bool prompt "See extra versions" @@ -27,29 +29,14 @@ config KERNEL_VERSION_SEE_EXTRAVERSION 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 - -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 @@ -83,3 +70,14 @@ config KERNEL_LINUX_VERBOSE_LEVEL default 2 if KERNEL_LINUX_VERBOSITY_2 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 |