|
@@ -33,6 +33,7 @@ source "target/linux/Config.in.versions"
|
|
|
|
|
|
config BR2_KERNEL_PATCH_LEVEL
|
|
config BR2_KERNEL_PATCH_LEVEL
|
|
string
|
|
string
|
|
|
|
+ default $(BR2_KERNEL_LATEST_2_6_30) if BR2_LINUX_2_6_30 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
|
default $(BR2_KERNEL_LATEST_2_6_29) if BR2_LINUX_2_6_29 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
|
default $(BR2_KERNEL_LATEST_2_6_29) if BR2_LINUX_2_6_29 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
|
default $(BR2_KERNEL_LATEST_2_6_28) if BR2_LINUX_2_6_28 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
|
default $(BR2_KERNEL_LATEST_2_6_28) if BR2_LINUX_2_6_28 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
|
default $(BR2_KERNEL_LATEST_2_6_27) if BR2_LINUX_2_6_27 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
|
default $(BR2_KERNEL_LATEST_2_6_27) if BR2_LINUX_2_6_27 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
|
@@ -47,6 +48,8 @@ config BR2_KERNEL_PATCH_LEVEL
|
|
|
|
|
|
config BR2_KERNEL_NEXT_VERSION
|
|
config BR2_KERNEL_NEXT_VERSION
|
|
string
|
|
string
|
|
|
|
+ default "2.6.31" if BR2_LINUX_2_6_30
|
|
|
|
+ default "2.6.30" if BR2_LINUX_2_6_29
|
|
default "2.6.29" if BR2_LINUX_2_6_28
|
|
default "2.6.29" if BR2_LINUX_2_6_28
|
|
default "2.6.28" if BR2_LINUX_2_6_27
|
|
default "2.6.28" if BR2_LINUX_2_6_27
|
|
default "2.6.27" if BR2_LINUX_2_6_26
|
|
default "2.6.27" if BR2_LINUX_2_6_26
|
|
@@ -59,6 +62,8 @@ config BR2_KERNEL_NEXT_VERSION
|
|
|
|
|
|
config BR2_KERNEL_THIS_VERSION
|
|
config BR2_KERNEL_THIS_VERSION
|
|
string
|
|
string
|
|
|
|
+ default "2.6.31" if BR2_LINUX_2_6_31
|
|
|
|
+ default "2.6.30" if BR2_LINUX_2_6_30
|
|
default "2.6.29" if BR2_LINUX_2_6_29
|
|
default "2.6.29" if BR2_LINUX_2_6_29
|
|
default "2.6.28" if BR2_LINUX_2_6_28
|
|
default "2.6.28" if BR2_LINUX_2_6_28
|
|
default "2.6.27" if BR2_LINUX_2_6_27
|
|
default "2.6.27" if BR2_LINUX_2_6_27
|
|
@@ -128,7 +133,11 @@ choice
|
|
Select the specific Linux version you want to use
|
|
Select the specific Linux version you want to use
|
|
|
|
|
|
config BR2_LINUX_2_6_STABLE
|
|
config BR2_LINUX_2_6_STABLE
|
|
- bool "The latest stable Linux kernel (2.6.29.4)"
|
|
|
|
|
|
+ bool "The latest stable Linux kernel (2.6.30.2)"
|
|
|
|
+
|
|
|
|
+config BR2_LINUX_2_6_30
|
|
|
|
+ bool "Linux 2.6.30"
|
|
|
|
+ select BR2_KERNEL_BASE
|
|
|
|
|
|
config BR2_LINUX_2_6_29
|
|
config BR2_LINUX_2_6_29
|
|
bool "Linux 2.6.29"
|
|
bool "Linux 2.6.29"
|
|
@@ -170,6 +179,10 @@ config BR2_LINUX_2_6_20
|
|
bool "Linux 2.6.20"
|
|
bool "Linux 2.6.20"
|
|
select BR2_KERNEL_BASE
|
|
select BR2_KERNEL_BASE
|
|
|
|
|
|
|
|
+config BR2_LINUX_2_6_31
|
|
|
|
+ bool "Linux 2.6.31"
|
|
|
|
+ select BR2_KERNEL_BASE
|
|
|
|
+
|
|
config BR2_LINUX26_CUSTOM
|
|
config BR2_LINUX26_CUSTOM
|
|
bool "Linux <custom> version"
|
|
bool "Linux <custom> version"
|
|
|
|
|
|
@@ -178,19 +191,19 @@ endchoice
|
|
if BR2_LINUX26_CUSTOM
|
|
if BR2_LINUX26_CUSTOM
|
|
config BR2_CUSTOM_DOWNLOAD_LINUX26_VERSION
|
|
config BR2_CUSTOM_DOWNLOAD_LINUX26_VERSION
|
|
string "Linux Tarball version"
|
|
string "Linux Tarball version"
|
|
- default "2.6.30"
|
|
|
|
|
|
+ default "2.6.31"
|
|
help
|
|
help
|
|
Specify any .tar.bz2 file
|
|
Specify any .tar.bz2 file
|
|
|
|
|
|
config BR2_CUSTOM_LINUX26_VERSION
|
|
config BR2_CUSTOM_LINUX26_VERSION
|
|
string "Linux Version"
|
|
string "Linux Version"
|
|
- default "2.6.30"
|
|
|
|
|
|
+ default "2.6.31"
|
|
help
|
|
help
|
|
Specify what the linux version will be called
|
|
Specify what the linux version will be called
|
|
|
|
|
|
config BR2_CUSTOM_LINUX26_PATCH
|
|
config BR2_CUSTOM_LINUX26_PATCH
|
|
string "patch name"
|
|
string "patch name"
|
|
- default "patch-2.6.30-rc4.bz2"
|
|
|
|
|
|
+ default "patch-2.6.31-rc4.bz2"
|
|
help
|
|
help
|
|
Specify a patch to be downloaded
|
|
Specify a patch to be downloaded
|
|
|
|
|