diff options
author | Benoît Thébaudeau" <benoit.thebaudeau@advansee.com> | 2013-03-14 22:03:33 +0100 |
---|---|---|
committer | Benoît Thébaudeau" <benoit.thebaudeau@advansee.com> | 2013-03-14 22:03:33 +0100 |
commit | c2204eeaa2d6254ae62ba5b7c5ebdb6b0d76e78f (patch) | |
tree | 62bde0483b706976c3c375ccefa8e6d75e5922a5 | |
parent | 76cc258d65647d0c046c3dac56d9fffcee229aaa (diff) | |
download | crosstool-ng-c2204eeaa2d6254ae62ba5b7c5ebdb6b0d76e78f.tar.gz crosstool-ng-c2204eeaa2d6254ae62ba5b7c5ebdb6b0d76e78f.tar.bz2 crosstool-ng-c2204eeaa2d6254ae62ba5b7c5ebdb6b0d76e78f.zip |
kernel/linux: update revisions
Update Linux with the latest available revisions.
Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Message-Id: <14c04210a1dc18f3c678.1363295061@advdt005-ubuntu>
Patchwork-Id: 227803
-rw-r--r-- | config/kernel/linux.in | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/config/kernel/linux.in b/config/kernel/linux.in index baae7d4d..d35b55cf 100644 --- a/config/kernel/linux.in +++ b/config/kernel/linux.in @@ -26,13 +26,25 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config KERNEL_V_3_8_3 + bool + prompt "3.8.3" + +config KERNEL_V_3_8_2 + bool + prompt "3.8.2" + +config KERNEL_V_3_8_1 + bool + prompt "3.8.1" + config KERNEL_V_3_8 bool prompt "3.8" config KERNEL_V_3_7 bool - prompt "3.7.9" + prompt "3.7.10" config KERNEL_V_3_6 bool @@ -44,7 +56,7 @@ config KERNEL_V_3_5 config KERNEL_V_3_4 bool - prompt "3.4.33" + prompt "3.4.36" config KERNEL_V_3_3 bool @@ -52,7 +64,7 @@ config KERNEL_V_3_3 config KERNEL_V_3_2 bool - prompt "3.2.39" + prompt "3.2.40" config KERNEL_V_3_1 bool @@ -60,7 +72,7 @@ config KERNEL_V_3_1 config KERNEL_V_3_0 bool - prompt "3.0.66" + prompt "3.0.69" config KERNEL_V_2_6_39 bool @@ -151,15 +163,18 @@ config KERNEL_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "3.8.3" if KERNEL_V_3_8_3 + default "3.8.2" if KERNEL_V_3_8_2 + default "3.8.1" if KERNEL_V_3_8_1 default "3.8" if KERNEL_V_3_8 - default "3.7.9" if KERNEL_V_3_7 + 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.33" if KERNEL_V_3_4 + default "3.4.36" if KERNEL_V_3_4 default "3.3.8" if KERNEL_V_3_3 - default "3.2.39" if KERNEL_V_3_2 + default "3.2.40" if KERNEL_V_3_2 default "3.1.10" if KERNEL_V_3_1 - default "3.0.66" if KERNEL_V_3_0 + default "3.0.69" 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 |