diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-06-11 21:50:11 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-06-11 21:50:11 +0200 |
commit | f4fc5206d9a0e0ec80db69071c4328a12b90e3d0 (patch) | |
tree | 3dc82b0df64022efb76ce3469765c261775939b3 | |
parent | f8ffee3dda393c70d17091753974030e25e21fe2 (diff) | |
download | crosstool-ng-f4fc5206d9a0e0ec80db69071c4328a12b90e3d0.tar.gz crosstool-ng-f4fc5206d9a0e0ec80db69071c4328a12b90e3d0.tar.bz2 crosstool-ng-f4fc5206d9a0e0ec80db69071c4328a12b90e3d0.zip |
kernel/linux: add latest versions
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | config/kernel/linux.in | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/config/kernel/linux.in b/config/kernel/linux.in index fc5c9c40..e084a04f 100644 --- a/config/kernel/linux.in +++ b/config/kernel/linux.in @@ -26,25 +26,33 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config KERNEL_V_3_4_2 + bool + prompt "3.4.2" + +config KERNEL_V_3_4_1 + bool + prompt "3.4.1" + config KERNEL_V_3_4 bool prompt "3.4" -config KERNEL_V_3_3_7 +config KERNEL_V_3_3_8 bool - prompt "3.3.7" + prompt "3.3.8" -config KERNEL_V_3_2_18 +config KERNEL_V_3_2_20 bool - prompt "3.2.18" + prompt "3.2.20" config KERNEL_V_3_1_10 bool prompt "3.1.10" -config KERNEL_V_3_0_32 +config KERNEL_V_3_0_34 bool - prompt "3.0.32" + prompt "3.0.34" config KERNEL_V_2_6_39_4 bool @@ -135,11 +143,13 @@ config KERNEL_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "3.4.2" if KERNEL_V_3_4_2 + default "3.4.1" if KERNEL_V_3_4_1 default "3.4" if KERNEL_V_3_4 - default "3.3.7" if KERNEL_V_3_3_7 - default "3.2.18" if KERNEL_V_3_2_18 + default "3.3.8" if KERNEL_V_3_3_8 + default "3.2.20" if KERNEL_V_3_2_20 default "3.1.10" if KERNEL_V_3_1_10 - default "3.0.32" if KERNEL_V_3_0_32 + default "3.0.34" if KERNEL_V_3_0_34 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 |