diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2013-10-07 00:03:19 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2013-10-07 00:03:19 +0200 |
commit | 342ade2ac8ce9c56d0416c495eb70fd885d53eea (patch) | |
tree | 925483259ddeb96afc0d63218b2f2378c6ad1b09 /config/kernel | |
parent | afa67897c96c861f7ad97e0a72308ffb2fe86cc6 (diff) | |
download | crosstool-ng-342ade2ac8ce9c56d0416c495eb70fd885d53eea.tar.gz crosstool-ng-342ade2ac8ce9c56d0416c495eb70fd885d53eea.tar.bz2 crosstool-ng-342ade2ac8ce9c56d0416c495eb70fd885d53eea.zip |
kernel/linux: add latest versions
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'config/kernel')
-rw-r--r-- | config/kernel/linux.in | 41 |
1 files changed, 33 insertions, 8 deletions
diff --git a/config/kernel/linux.in b/config/kernel/linux.in index 303a76f9..44037b1d 100644 --- a/config/kernel/linux.in +++ b/config/kernel/linux.in @@ -26,9 +26,29 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config KERNEL_V_3_11_4 + bool + prompt "3.11.4" + +config KERNEL_V_3_11_3 + bool + prompt "3.11.3" + +config KERNEL_V_3_11_2 + bool + prompt "3.11.2" + +config KERNEL_V_3_11_1 + bool + prompt "3.11.1" + +config KERNEL_V_3_11 + bool + prompt "3.11" + config KERNEL_V_3_10 bool - prompt "3.10.2" + prompt "3.10.15" config KERNEL_V_3_9 bool @@ -52,7 +72,7 @@ config KERNEL_V_3_5 config KERNEL_V_3_4 bool - prompt "3.4.54" + prompt "3.4.65" config KERNEL_V_3_3 bool @@ -60,7 +80,7 @@ config KERNEL_V_3_3 config KERNEL_V_3_2 bool - prompt "3.2.48" + prompt "3.2.51" config KERNEL_V_3_1 bool @@ -68,7 +88,7 @@ config KERNEL_V_3_1 config KERNEL_V_3_0 bool - prompt "3.0.87" + prompt "3.0.99" config KERNEL_V_2_6_39 bool @@ -159,17 +179,22 @@ config KERNEL_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW - default "3.10.2" if KERNEL_V_3_10 + default "3.11.4" if KERNEL_V_3_11_4 + default "3.11.3" if KERNEL_V_3_11_3 + default "3.11.2" if KERNEL_V_3_11_2 + default "3.11.1" if KERNEL_V_3_11_1 + default "3.11" if KERNEL_V_3_11 + default "3.10.15" 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 default "3.6.11" if KERNEL_V_3_6 default "3.5.7" if KERNEL_V_3_5 - default "3.4.54" if KERNEL_V_3_4 + default "3.4.65" if KERNEL_V_3_4 default "3.3.8" if KERNEL_V_3_3 - default "3.2.48" if KERNEL_V_3_2 + default "3.2.51" if KERNEL_V_3_2 default "3.1.10" if KERNEL_V_3_1 - default "3.0.87" if KERNEL_V_3_0 + default "3.0.99" if KERNEL_V_3_0 default "2.6.39.4" if KERNEL_V_2_6_39 default "2.6.38.8" if KERNEL_V_2_6_38 default "2.6.37.6" if KERNEL_V_2_6_37 |