* [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.10 headers
2024-07-25 19:49 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6, 9}.x series Bernd Kuhls
@ 2024-07-25 19:49 ` Bernd Kuhls
2024-07-25 19:50 ` [Buildroot] [PATCH 3/3] linux: bump latest version to 6.10 Bernd Kuhls
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Bernd Kuhls @ 2024-07-25 19:49 UTC (permalink / raw)
To: buildroot; +Cc: Giulio Benetti, Romain Naour, Thomas Petazzoni
And add (and default to) 6.10 to linux-headers.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
linux/linux.hash | 1 +
| 13 +++++++++++--
toolchain/Config.in | 5 +++++
.../toolchain-external-custom/Config.in.options | 6 +++++-
4 files changed, 22 insertions(+), 3 deletions(-)
diff --git a/linux/linux.hash b/linux/linux.hash
index b059ecd892..2d2b6d3546 100644
--- a/linux/linux.hash
+++ b/linux/linux.hash
@@ -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
--git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index daa54b4ef1..707f2ad026 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -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 \
diff --git a/toolchain/Config.in b/toolchain/Config.in
index 8acdc62fc2..6e91ab756c 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -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
diff --git a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
index 45a87fb3c8..0daa1e3583 100644
--- a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
+++ b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
@@ -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
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread* [Buildroot] [PATCH 3/3] linux: bump latest version to 6.10
2024-07-25 19:49 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6, 9}.x series Bernd Kuhls
2024-07-25 19:49 ` [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.10 headers Bernd Kuhls
@ 2024-07-25 19:50 ` Bernd Kuhls
2024-07-26 6:43 ` [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6, 9}.x series Thomas Petazzoni via buildroot
2024-08-31 21:42 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Bernd Kuhls @ 2024-07-25 19:50 UTC (permalink / raw)
To: buildroot; +Cc: Giulio Benetti, Romain Naour, Thomas Petazzoni
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
linux/Config.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/linux/Config.in b/linux/Config.in
index 1542edc0e9..9da1db16d1 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -28,8 +28,8 @@ choice
prompt "Kernel version"
config BR2_LINUX_KERNEL_LATEST_VERSION
- bool "Latest version (6.9)"
- select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9 if BR2_KERNEL_HEADERS_AS_KERNEL
+ bool "Latest version (6.10)"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10 if BR2_KERNEL_HEADERS_AS_KERNEL
config BR2_LINUX_KERNEL_LATEST_CIP_VERSION
bool "Latest CIP SLTS version (5.10.162-cip24)"
@@ -134,7 +134,7 @@ config BR2_LINUX_KERNEL_CUSTOM_REPO_GIT_SUBMODULES
config BR2_LINUX_KERNEL_VERSION
string
- default "6.9.10" if BR2_LINUX_KERNEL_LATEST_VERSION
+ default "6.10.1" if BR2_LINUX_KERNEL_LATEST_VERSION
default "5.10.162-cip24" if BR2_LINUX_KERNEL_LATEST_CIP_VERSION
default "5.10.162-cip24-rt10" if BR2_LINUX_KERNEL_LATEST_CIP_RT_VERSION
default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE \
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6, 9}.x series
2024-07-25 19:49 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6, 9}.x series Bernd Kuhls
2024-07-25 19:49 ` [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.10 headers Bernd Kuhls
2024-07-25 19:50 ` [Buildroot] [PATCH 3/3] linux: bump latest version to 6.10 Bernd Kuhls
@ 2024-07-26 6:43 ` Thomas Petazzoni via buildroot
2024-08-31 21:42 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-26 6:43 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: Giulio Benetti, Romain Naour, buildroot
On Thu, 25 Jul 2024 21:49:58 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> linux/Config.in | 2 +-
> linux/linux.hash | 14 +++++++-------
> package/linux-headers/Config.in.host | 14 +++++++-------
> 3 files changed, 15 insertions(+), 15 deletions(-)
Thanks, applied!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6, 9}.x series
2024-07-25 19:49 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6, 9}.x series Bernd Kuhls
` (2 preceding siblings ...)
2024-07-26 6:43 ` [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6, 9}.x series Thomas Petazzoni via buildroot
@ 2024-08-31 21:42 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-08-31 21:42 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: Giulio Benetti, Romain Naour, Thomas Petazzoni, buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Committed to 2024.02.x and 2024.05.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread