summaryrefslogtreecommitdiffstats
path: root/toolchain/kernel-headers/Config.in
diff options
context:
space:
mode:
authorUlf Samuelsson2007-08-20 00:01:27 +0200
committerUlf Samuelsson2007-08-20 00:01:27 +0200
commit3978c675708a217ea9c390c84cc890d383253980 (patch)
tree08e9b1d7767335e96e304d7565fa2cfd52f86e0c /toolchain/kernel-headers/Config.in
parentReplace non-working 'make uninstall' for 'package/patch' with simple 'rm' (diff)
downloadbuildroot-3978c675708a217ea9c390c84cc890d383253980.tar.gz
buildroot-3978c675708a217ea9c390c84cc890d383253980.tar.xz
buildroot-3978c675708a217ea9c390c84cc890d383253980.zip
Make ipmi kernelpatch selectable, add possibility for custom kernel patch
Diffstat (limited to 'toolchain/kernel-headers/Config.in')
-rw-r--r--toolchain/kernel-headers/Config.in27
1 files changed, 25 insertions, 2 deletions
diff --git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index 9244f088e..720fb07f9 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -2,11 +2,11 @@
# ignored if you are building your own kernel or using the system kernel.
#
-comment "Kernel Header Options"
+menu "Kernel Header Options"
choice
prompt "Kernel Headers"
- default BR2_KERNEL_HEADERS_2_6_21
+ default BR2_KERNEL_HEADERS_2_6_22
help
Select the version of kernel header files you wish to use.
You must select the correct set of header files to match
@@ -58,9 +58,20 @@ choice
endchoice
+config BR2_KERNEL_HEADERS_IPMI
+ bool "use ipmi kernel patches"
+ default n
+ depends BR2_KERNEL_HEADERS_2_6_20 || BR2_KERNEL_HEADERS_2_6_21 || BR2_KERNEL_HEADERS_2_6_22
+ help
+ Apply patches which allow for lzma compressed
+ initramfs filesystems. This requires the lzma
+ program in your development environment.
+
+
config BR2_KERNEL_HEADERS_LZMA
bool "use lzma initramfs kernel patches"
default n
+ depends BR2_KERNEL_HEADERS_2_6_21 || BR2_KERNEL_HEADERS_2_6_22
help
Apply patches which allow for lzma compressed
initramfs filesystems. This requires the lzma
@@ -68,6 +79,8 @@ config BR2_KERNEL_HEADERS_LZMA
config BR2_KERNEL_HEADERS_LZMA_INSTALL
bool "Install lzma in /usr/local/bin (Requires system password) for sudo"
+ depends on BR2_KERNEL_HEADERS_2_6_21 || BR2_KERNEL_HEADERS_2_6_22
+ depends on BR2_KERNEL_HEADERS_LZMA
default n
help
Install the lzma package in the /usr/local/bin directory
@@ -77,6 +90,14 @@ config BR2_KERNEL_HEADERS_LZMA_INSTALL
to complete the linux build, ifl you apply the lzma patches
is to have '$(STAGING_DIR)/usr/bin' in your path.
+config BR2_KERNEL_HEADERS_PATCH_DIR
+ bool "Add additional headers from $(KERNEL_HEADERS_PATCH_DIR)"
+ default n
+ depends BR2_KERNEL_HEADERS_2_6_20 || BR2_KERNEL_HEADERS_2_6_21 || BR2_KERNEL_HEADERS_2_6_22
+ help
+ Apply additonal kernel patches defined by KERNEL_HEADERS_PATCH_DIR
+ in your board directory.
+
config BR2_DEFAULT_KERNEL_HEADERS
string
default "2.4.25" if BR2_KERNEL_HEADERS_2_4_25
@@ -90,3 +111,5 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "2.6.20.4" if BR2_KERNEL_HEADERS_2_6_20
default "2.6.21.5" if BR2_KERNEL_HEADERS_2_6_21
default "2.6.22.1" if BR2_KERNEL_HEADERS_2_6_22
+
+endmenu