diff options
author | Cristoforo Cataldo <cristoforo.cataldo@gmail.com> | 2015-03-15 13:36:36 +0100 |
---|---|---|
committer | Cristoforo Cataldo <cristoforo.cataldo@gmail.com> | 2015-03-15 13:36:36 +0100 |
commit | c9927ba52a91d2a40c4c2a4b464469b78fb78893 (patch) | |
tree | cfb787f1eb78496ed8f5c0001e819c40b5d3cfe8 /config/kernel | |
parent | 996466bd53d4bf621efcbbe7ccd34d9e28bde9b5 (diff) | |
download | crosstool-ng-c9927ba52a91d2a40c4c2a4b464469b78fb78893.tar.gz crosstool-ng-c9927ba52a91d2a40c4c2a4b464469b78fb78893.tar.bz2 crosstool-ng-c9927ba52a91d2a40c4c2a4b464469b78fb78893.zip |
config/linux: Update kernel versions
This commit updates to the latest longterm and stable kernel versions as
of March 15, 2015.
Signed-off-by: Cristoforo Cataldo <cristoforo.cataldo@gmail.com>
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 96d02d17..20505cad 100644 --- a/config/kernel/linux.in +++ b/config/kernel/linux.in @@ -26,9 +26,13 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config KERNEL_V_3_19 + bool + prompt "3.19.1" + config KERNEL_V_3_18 bool - prompt "3.18.7" + prompt "3.18.9" config KERNEL_V_3_17 bool @@ -44,7 +48,7 @@ config KERNEL_V_3_15 config KERNEL_V_3_14 bool - prompt "3.14.33 (longterm)" + prompt "3.14.35 (longterm)" config KERNEL_V_3_13 bool @@ -52,7 +56,7 @@ config KERNEL_V_3_13 config KERNEL_V_3_12 bool - prompt "3.12.37 (longterm)" + prompt "3.12.38 (longterm)" config KERNEL_V_3_11 bool @@ -60,7 +64,7 @@ config KERNEL_V_3_11 config KERNEL_V_3_10 bool - prompt "3.10.69 (longterm)" + prompt "3.10.71 (longterm)" config KERNEL_V_3_9 bool @@ -92,7 +96,7 @@ config KERNEL_V_3_3 config KERNEL_V_3_2 bool - prompt "3.2.66 (longterm)" + prompt "3.2.68 (longterm)" config KERNEL_V_3_1 bool @@ -191,15 +195,16 @@ config KERNEL_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW - default "3.18.7" if KERNEL_V_3_18 + default "3.19.1" if KERNEL_V_3_19 + default "3.18.9" if KERNEL_V_3_18 default "3.17.8" if KERNEL_V_3_17 default "3.16.7" if KERNEL_V_3_16 default "3.15.10" if KERNEL_V_3_15 - default "3.14.33" if KERNEL_V_3_14 + default "3.14.35" if KERNEL_V_3_14 default "3.13.11" if KERNEL_V_3_13 - default "3.12.37" if KERNEL_V_3_12 + default "3.12.38" if KERNEL_V_3_12 default "3.11.10" if KERNEL_V_3_11 - default "3.10.69" if KERNEL_V_3_10 + default "3.10.71" if KERNEL_V_3_10 default "3.9.11" if KERNEL_V_3_9 default "3.8.13" if KERNEL_V_3_8 default "3.7.10" if KERNEL_V_3_7 @@ -207,7 +212,7 @@ config KERNEL_VERSION default "3.5.7" if KERNEL_V_3_5 default "3.4.106" if KERNEL_V_3_4 default "3.3.8" if KERNEL_V_3_3 - default "3.2.66" if KERNEL_V_3_2 + default "3.2.68" 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 |