diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-10-22 22:40:01 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-10-22 22:40:01 +0200 |
commit | 3a7e81925b7ebf35d13b6df4e98ff518d25faade (patch) | |
tree | 3b5cc1761548b83481978fb3292039afdd00374f | |
parent | f378c3c1ffb4a4fdf68364fe9298e5bccbccd440 (diff) | |
download | crosstool-ng-3a7e81925b7ebf35d13b6df4e98ff518d25faade.tar.gz crosstool-ng-3a7e81925b7ebf35d13b6df4e98ff518d25faade.tar.bz2 crosstool-ng-3a7e81925b7ebf35d13b6df4e98ff518d25faade.zip |
kernel/linux: add altest versions
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | config/kernel/linux.in | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/config/kernel/linux.in b/config/kernel/linux.in index 4ba45ac8..afe40d9b 100644 --- a/config/kernel/linux.in +++ b/config/kernel/linux.in @@ -26,6 +26,14 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config KERNEL_V_3_6_3 + bool + prompt "3.6.3" + +config KERNEL_V_3_6_2 + bool + prompt "3.6.2" + config KERNEL_V_3_6_1 bool prompt "3.6.1" @@ -34,29 +42,29 @@ config KERNEL_V_3_6 bool prompt "3.6" -config KERNEL_V_3_5_6 +config KERNEL_V_3_5_7 bool - prompt "3.5.6" + prompt "3.5.7" -config KERNEL_V_3_4_13 +config KERNEL_V_3_4_15 bool - prompt "3.4.13" + prompt "3.4.15" config KERNEL_V_3_3_8 bool prompt "3.3.8" -config KERNEL_V_3_2_31 +config KERNEL_V_3_2_32 bool - prompt "3.2.31" + prompt "3.2.32" config KERNEL_V_3_1_10 bool prompt "3.1.10" -config KERNEL_V_3_0_45 +config KERNEL_V_3_0_48 bool - prompt "3.0.45" + prompt "3.0.48" config KERNEL_V_2_6_39_4 bool @@ -147,14 +155,16 @@ config KERNEL_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "3.6.3" if KERNEL_V_3_6_3 + default "3.6.2" if KERNEL_V_3_6_2 default "3.6.1" if KERNEL_V_3_6_1 default "3.6" if KERNEL_V_3_6 - default "3.5.6" if KERNEL_V_3_5_6 - default "3.4.13" if KERNEL_V_3_4_13 + default "3.5.7" if KERNEL_V_3_5_7 + default "3.4.15" if KERNEL_V_3_4_15 default "3.3.8" if KERNEL_V_3_3_8 - default "3.2.31" if KERNEL_V_3_2_31 + default "3.2.32" if KERNEL_V_3_2_32 default "3.1.10" if KERNEL_V_3_1_10 - default "3.0.45" if KERNEL_V_3_0_45 + default "3.0.48" if KERNEL_V_3_0_48 default "2.6.39.4" if KERNEL_V_2_6_39_4 default "2.6.38.8" if KERNEL_V_2_6_38_8 default "2.6.37.6" if KERNEL_V_2_6_37_6 |