diff options
author | Daniel Zimmermann <netzimme@gmail.com> | 2014-02-21 07:17:33 +0100 |
---|---|---|
committer | Daniel Zimmermann <netzimme@gmail.com> | 2014-02-21 07:17:33 +0100 |
commit | f336d89f93207f5b2dc3c6551c107239ad8120d0 (patch) | |
tree | 24135e340ad392a27aa7e9b10dbb5faf626843bb /config/kernel | |
parent | 4e6622e882a035c0e4ac93346c3973e136753221 (diff) | |
download | crosstool-ng-f336d89f93207f5b2dc3c6551c107239ad8120d0.tar.gz crosstool-ng-f336d89f93207f5b2dc3c6551c107239ad8120d0.tar.bz2 crosstool-ng-f336d89f93207f5b2dc3c6551c107239ad8120d0.zip |
kernel/linux: update linux kernel headers
update linux kernel headers to a newer version
Signed-off-by: '"Daniel Zimmermann" <netzimme@gmail.com>'
[yann.morin.1998@free.fr: further bump the versions]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <424a44a11e7051d8d894.1392963455@haus-VirtualBox>
Patchwork-Id: 322417
Diffstat (limited to 'config/kernel')
-rw-r--r-- | config/kernel/linux.in | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/config/kernel/linux.in b/config/kernel/linux.in index df6b7b72..4e02ec3b 100644 --- a/config/kernel/linux.in +++ b/config/kernel/linux.in @@ -26,17 +26,21 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config KERNEL_V_3_13 + bool + prompt "3.13.11" + config KERNEL_V_3_12 bool - prompt "3.12" + prompt "3.12.18" config KERNEL_V_3_11 bool - prompt "3.11.8" + prompt "3.11.10" config KERNEL_V_3_10 bool - prompt "3.10.19" + prompt "3.10.38 (longterm)" config KERNEL_V_3_9 bool @@ -60,7 +64,7 @@ config KERNEL_V_3_5 config KERNEL_V_3_4 bool - prompt "3.4.69" + prompt "3.4.88 (longterm)" config KERNEL_V_3_3 bool @@ -68,7 +72,7 @@ config KERNEL_V_3_3 config KERNEL_V_3_2 bool - prompt "3.2.52" + prompt "3.2.58" config KERNEL_V_3_1 bool @@ -167,17 +171,18 @@ config KERNEL_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW - default "3.12" if KERNEL_V_3_12 - default "3.11.8" if KERNEL_V_3_11 - default "3.10.19" if KERNEL_V_3_10 + default "3.13.11" if KERNEL_V_3_13 + default "3.12.18" if KERNEL_V_3_12 + default "3.11.10" if KERNEL_V_3_11 + default "3.10.38" if KERNEL_V_3_10 default "3.9.11" if KERNEL_V_3_9 default "3.8.13.9" if KERNEL_V_3_8 default "3.7.10" if KERNEL_V_3_7 default "3.6.11" if KERNEL_V_3_6 default "3.5.7.25" if KERNEL_V_3_5 - default "3.4.69" if KERNEL_V_3_4 + default "3.4.88" if KERNEL_V_3_4 default "3.3.8" if KERNEL_V_3_3 - default "3.2.52" if KERNEL_V_3_2 + default "3.2.58" if KERNEL_V_3_2 default "3.1.10" if KERNEL_V_3_1 default "3.0.101" if KERNEL_V_3_0 default "2.6.39.4" if KERNEL_V_2_6_39 |