@@ -1,4 +1,5 @@
# From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
+sha256 70109dfd1cd1c5f8a58eb1cb37122b9bf93f9c6a6280bf91019263c7339cf76b linux-6.10.1.tar.xz
sha256 efd12e335fa67d13a3eae30e4b7b7546e74b8ccc90682e4c3fffab0b22654da1 linux-6.9.10.tar.xz
sha256 9ec99c578158ab85d99b37791a76643d2ea4c3f72ecbef7b5eb6d60f3de032ef linux-6.6.41.tar.xz
sha256 b9aa6ec1a00f234d6c6f2d428fbb0a6bf459606c259263df978f86685b65a8b9 linux-6.1.100.tar.xz
@@ -3,7 +3,7 @@ comment "Kernel Header Options"
choice
prompt "Kernel Headers"
default BR2_KERNEL_HEADERS_AS_KERNEL if BR2_LINUX_KERNEL
- default BR2_KERNEL_HEADERS_6_9
+ default BR2_KERNEL_HEADERS_6_10
help
Select the kernel version to get headers from.
@@ -51,6 +51,10 @@ config BR2_KERNEL_HEADERS_6_6
config BR2_KERNEL_HEADERS_6_9
bool "Linux 6.9.x kernel headers"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9
+
+config BR2_KERNEL_HEADERS_6_10
+ bool "Linux 6.10.x kernel headers"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10
select BR2_KERNEL_HEADERS_LATEST
config BR2_KERNEL_HEADERS_VERSION
@@ -128,8 +132,12 @@ choice
If your kernel headers are more recent than the latest version
in the choice, then select the latest version.
+config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_10
+ bool "6.10.x or later"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10
+
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_9
- bool "6.9.x or later"
+ bool "6.9.x"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_8
@@ -426,6 +434,7 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "6.1.100" if BR2_KERNEL_HEADERS_6_1
default "6.6.41" if BR2_KERNEL_HEADERS_6_6
default "6.9.10" if BR2_KERNEL_HEADERS_6_9
+ default "6.10.1" if BR2_KERNEL_HEADERS_6_10
default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
default "custom" if BR2_KERNEL_HEADERS_CUSTOM_TARBALL
default BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION \
@@ -652,6 +652,10 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9
bool
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
+
+config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10
+ bool
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9
select BR2_TOOLCHAIN_HEADERS_LATEST
# This should be selected by the latest version, above, to indicate that
@@ -665,6 +669,7 @@ config BR2_TOOLCHAIN_HEADERS_LATEST
# stops affecting a value on the first matching default.
config BR2_TOOLCHAIN_HEADERS_AT_LEAST
string
+ default "6.10" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10
default "6.9" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9
default "6.8" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
default "6.7" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
@@ -166,8 +166,12 @@ choice
If your toolchain uses headers newer than the latest version
in the choice, then select the latest version.
+config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_10
+ bool "6.10.x or later"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10
+
config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_9
- bool "6.9.x or later"
+ bool "6.9.x"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9
config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_8
And add (and default to) 6.10 to linux-headers. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> --- linux/linux.hash | 1 + package/linux-headers/Config.in.host | 13 +++++++++++-- toolchain/Config.in | 5 +++++ .../toolchain-external-custom/Config.in.options | 6 +++++- 4 files changed, 22 insertions(+), 3 deletions(-)