diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-12-19 13:08:34 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-12-19 13:08:34 +0100 |
commit | 5b4be4bafde7a4ffc1f56b1add44d8aadeb22e22 (patch) | |
tree | 4a618b26c6c789aa47c751ec69a79fd012d1ebd1 | |
parent | 454429bc7c5725c9a2804001e3ee7c6e15665315 (diff) | |
download | crosstool-ng-5b4be4bafde7a4ffc1f56b1add44d8aadeb22e22.tar.gz crosstool-ng-5b4be4bafde7a4ffc1f56b1add44d8aadeb22e22.tar.bz2 crosstool-ng-5b4be4bafde7a4ffc1f56b1add44d8aadeb22e22.zip |
linux/kernel: fix version numbers
-rw-r--r-- | config/kernel/linux.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config/kernel/linux.in b/config/kernel/linux.in index 34c54225..41abc3ad 100644 --- a/config/kernel/linux.in +++ b/config/kernel/linux.in @@ -42,13 +42,13 @@ config KERNEL_V_2_6_31 bool prompt "2.6.31" -config KERNEL_V_3_6_30_8 +config KERNEL_V_2_6_30_8 bool - prompt "3.6.30.8" + prompt "2.6.30.8" -config KERNEL_V_3_6_30_7 +config KERNEL_V_2_6_30_7 bool - prompt "3.6.30.7" + prompt "2.6.30.7" config KERNEL_V_2_6_30_6 bool @@ -149,8 +149,8 @@ config KERNEL_VERSION # CT_INSERT_VERSION_STRING_BELOW default "2.6.31.1" if KERNEL_V_2_6_31_1 default "2.6.31" if KERNEL_V_2_6_31 - default "3.6.30.8" if KERNEL_V_3_6_30_8 - default "3.6.30.7" if KERNEL_V_3_6_30_7 + default "2.6.30.8" if KERNEL_V_2_6_30_8 + default "2.6.30.7" if KERNEL_V_2_6_30_7 default "2.6.30.6" if KERNEL_V_2_6_30_6 default "2.6.30.5" if KERNEL_V_2_6_30_5 default "2.6.30.4" if KERNEL_V_2_6_30_4 |