diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-09-03 15:41:54 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-04 00:24:11 +0200 |
commit | 866ba22b8644a3c96c4382801ae89c5c3058ac85 (patch) | |
tree | d0a8f2b1934991a897faf89a57e8d7f49277b24c | |
parent | 2e20d072ae2ceef8d5b54022616c8f6bcd194e7f (diff) | |
download | buildroot-866ba22b8644a3c96c4382801ae89c5c3058ac85.tar.gz buildroot-866ba22b8644a3c96c4382801ae89c5c3058ac85.zip |
linux-headers: add 3.11.x series
And deprecate 3.9.x series to match upstream.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/linux-headers/Config.in.host | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host index ef76733352..f05111bfc9 100644 --- a/package/linux-headers/Config.in.host +++ b/package/linux-headers/Config.in.host @@ -5,7 +5,7 @@ comment "Kernel Header Options" choice prompt "Kernel Headers" - default BR2_KERNEL_HEADERS_3_10 + default BR2_KERNEL_HEADERS_3_11 help Select the version of kernel header files you wish to use. You must select the correct set of header files to match @@ -52,10 +52,14 @@ choice config BR2_KERNEL_HEADERS_3_9 bool "Linux 3.9.x kernel headers" + depends on BR2_DEPRECATED config BR2_KERNEL_HEADERS_3_10 bool "Linux 3.10.x kernel headers" + config BR2_KERNEL_HEADERS_3_11 + bool "Linux 3.11.x kernel headers" + config BR2_KERNEL_HEADERS_VERSION bool "Manually specified Linux version" @@ -83,5 +87,6 @@ config BR2_DEFAULT_KERNEL_HEADERS default "3.8.13" if BR2_KERNEL_HEADERS_3_8 default "3.9.11" if BR2_KERNEL_HEADERS_3_9 default "3.10.10" if BR2_KERNEL_HEADERS_3_10 + default "3.11" if BR2_KERNEL_HEADERS_3_11 default "2.6" if BR2_KERNEL_HEADERS_SNAP default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION |