mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-10 03:47:44 +00:00
Add configurations for current linux versions
This commit is contained in:
parent
fe3d0e27da
commit
fd3742248d
@ -32,6 +32,7 @@ if BR2_KERNEL_LINUX_ADVANCED
|
|||||||
# --- These 'constants' requires regular maintenance, so put them first
|
# --- These 'constants' requires regular maintenance, so put them first
|
||||||
config BR2_KERNEL_PATCH_LEVEL
|
config BR2_KERNEL_PATCH_LEVEL
|
||||||
string
|
string
|
||||||
|
default "3" if BR2_LINUX_2_6_26 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
||||||
default "9" if BR2_LINUX_2_6_25 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
default "9" if BR2_LINUX_2_6_25 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
||||||
default "7" if BR2_LINUX_2_6_24 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
default "7" if BR2_LINUX_2_6_24 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
||||||
default "17" if BR2_LINUX_2_6_23 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
default "17" if BR2_LINUX_2_6_23 && BR2_KERNEL_ADD_LATEST_MINORPATCH
|
||||||
@ -42,10 +43,11 @@ config BR2_KERNEL_PATCH_LEVEL
|
|||||||
|
|
||||||
config BR2_KERNEL_CURRENT_VERSION
|
config BR2_KERNEL_CURRENT_VERSION
|
||||||
string
|
string
|
||||||
default "2.6.25.10"
|
default "2.6.26.3"
|
||||||
|
|
||||||
config BR2_KERNEL_NEXT_VERSION
|
config BR2_KERNEL_NEXT_VERSION
|
||||||
string
|
string
|
||||||
|
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
|
||||||
default "2.6.26" if BR2_LINUX_2_6_25
|
default "2.6.26" if BR2_LINUX_2_6_25
|
||||||
default "2.6.25" if BR2_LINUX_2_6_24
|
default "2.6.25" if BR2_LINUX_2_6_24
|
||||||
@ -56,6 +58,7 @@ config BR2_KERNEL_NEXT_VERSION
|
|||||||
|
|
||||||
config BR2_KERNEL_THIS_VERSION
|
config BR2_KERNEL_THIS_VERSION
|
||||||
string
|
string
|
||||||
|
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
|
||||||
default "2.6.26" if BR2_LINUX_2_6_26
|
default "2.6.26" if BR2_LINUX_2_6_26
|
||||||
default "2.6.25" if BR2_LINUX_2_6_25
|
default "2.6.25" if BR2_LINUX_2_6_25
|
||||||
@ -67,15 +70,15 @@ config BR2_KERNEL_THIS_VERSION
|
|||||||
|
|
||||||
config LINUX26_LATEST_RC_VERSION
|
config LINUX26_LATEST_RC_VERSION
|
||||||
string
|
string
|
||||||
default "2.6.26-rc8" if BR2_KERNEL_ADD_LATEST_RC_PATCH
|
default "2.6.27-rc4" if BR2_KERNEL_ADD_LATEST_RC_PATCH
|
||||||
|
|
||||||
config LINUX26_LATEST_GIT_VERSION
|
config LINUX26_LATEST_GIT_VERSION
|
||||||
string
|
string
|
||||||
default "2.6.25-rc8-git2" if BR2_KERNEL_ADD_LATEST_SNAPSHOT
|
default "2.6.27-rc4-git1" if BR2_KERNEL_ADD_LATEST_SNAPSHOT
|
||||||
|
|
||||||
config LINUX26_LATEST_MM_VERSION
|
config LINUX26_LATEST_MM_VERSION
|
||||||
string
|
string
|
||||||
default "2.6.26-rc5-mm3" if BR2_KERNEL_ADD_LATEST_MM_PATCH
|
default "2.6.27-rc1-mm1" if BR2_KERNEL_ADD_LATEST_MM_PATCH
|
||||||
|
|
||||||
config BR2_KERNEL_SITE
|
config BR2_KERNEL_SITE
|
||||||
string
|
string
|
||||||
@ -133,9 +136,15 @@ 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.25.10)"
|
bool "The latest stable Linux kernel (2.6.26.3)"
|
||||||
help
|
help
|
||||||
Linux 2.6.25.10
|
Linux 2.6.26.3
|
||||||
|
|
||||||
|
config BR2_LINUX_2_6_26
|
||||||
|
bool "Linux 2.6.26"
|
||||||
|
select BR2_KERNEL_BASE
|
||||||
|
help
|
||||||
|
Linux 2.6.26
|
||||||
|
|
||||||
config BR2_LINUX_2_6_25
|
config BR2_LINUX_2_6_25
|
||||||
bool "Linux 2.6.25"
|
bool "Linux 2.6.25"
|
||||||
@ -198,18 +207,18 @@ config BR2_LINUX_2_6_20
|
|||||||
help
|
help
|
||||||
Linux 2.6.20
|
Linux 2.6.20
|
||||||
|
|
||||||
config BR2_LINUX_2_6_26
|
|
||||||
bool "Linux 2.6.26"
|
|
||||||
select BR2_KERNEL_BASE
|
|
||||||
help
|
|
||||||
Linux 2.6.26
|
|
||||||
|
|
||||||
config BR2_LINUX_2_6_27
|
config BR2_LINUX_2_6_27
|
||||||
bool "Linux 2.6.27"
|
bool "Linux 2.6.27"
|
||||||
select BR2_KERNEL_BASE
|
select BR2_KERNEL_BASE
|
||||||
help
|
help
|
||||||
Linux 2.6.27
|
Linux 2.6.27
|
||||||
|
|
||||||
|
config BR2_LINUX_2_6_28
|
||||||
|
bool "Linux 2.6.28"
|
||||||
|
select BR2_KERNEL_BASE
|
||||||
|
help
|
||||||
|
Linux 2.6.28
|
||||||
|
|
||||||
config BR2_LINUX26_CUSTOM
|
config BR2_LINUX26_CUSTOM
|
||||||
bool "Linux <custom> version"
|
bool "Linux <custom> version"
|
||||||
help
|
help
|
||||||
|
Loading…
x
Reference in New Issue
Block a user