* [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.7 headers
2024-03-07 17:48 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
@ 2024-03-07 17:48 ` Bernd Kuhls
2024-03-07 17:48 ` [Buildroot] [PATCH 3/3] linux: bump latest version to 6.7.9 Bernd Kuhls
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Bernd Kuhls @ 2024-03-07 17:48 UTC (permalink / raw)
To: buildroot
Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
Thomas Petazzoni
And add (and default to) 6.7 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 977ad30f73..3c149a031a 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 0fd733fc0778f8da1fdf66df1698d394248807de71eef83a4d1218bcb3dfd346 linux-6.7.9.tar.xz
sha256 ee0b430148da94d2b13608b8d80b007b7d281dc90e3f19b63cf9a9943810e457 linux-6.6.21.tar.xz
sha256 0ebd861c6fd47bb0a9d3a09664d704833d1a54750c7bf9c4ad8b5e9cbd49342b linux-6.1.81.tar.xz
# From https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
--git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index fe4fc5011e..274752a412 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_6
+ default BR2_KERNEL_HEADERS_6_7
help
Select the kernel version to get headers from.
@@ -47,6 +47,10 @@ config BR2_KERNEL_HEADERS_6_1
config BR2_KERNEL_HEADERS_6_6
bool "Linux 6.6.x kernel headers"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
+
+config BR2_KERNEL_HEADERS_6_7
+ bool "Linux 6.7.x kernel headers"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
select BR2_KERNEL_HEADERS_LATEST
config BR2_KERNEL_HEADERS_VERSION
@@ -124,8 +128,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_7
+ bool "6.7.x or later"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
+
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6
- bool "6.6.x or later"
+ bool "6.6.x"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_5
@@ -409,6 +417,7 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "5.15.151" if BR2_KERNEL_HEADERS_5_15
default "6.1.81" if BR2_KERNEL_HEADERS_6_1
default "6.6.21" if BR2_KERNEL_HEADERS_6_6
+ default "6.7.9" if BR2_KERNEL_HEADERS_6_7
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 3dd6e83d35..33528ea8fc 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -645,6 +645,10 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_5
config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
bool
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_5
+
+config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
+ bool
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
select BR2_TOOLCHAIN_HEADERS_LATEST
# This should be selected by the latest version, above, to indicate that
@@ -658,6 +662,7 @@ config BR2_TOOLCHAIN_HEADERS_LATEST
# stops affecting a value on the first matching default.
config BR2_TOOLCHAIN_HEADERS_AT_LEAST
string
+ default "6.7" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
default "6.6" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
default "6.5" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_5
default "6.4" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_4
diff --git a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
index 5554d56719..a7c239dcab 100644
--- a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
+++ b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
@@ -162,8 +162,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_7
+ bool "6.7.x or later"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
+
config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_6
- bool "6.6.x or later"
+ bool "6.6.x"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_5
--
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.7.9
2024-03-07 17:48 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
2024-03-07 17:48 ` [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
@ 2024-03-07 17:48 ` Bernd Kuhls
2024-03-11 19:08 ` [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Peter Korsgaard
2024-03-21 20:26 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Bernd Kuhls @ 2024-03-07 17:48 UTC (permalink / raw)
To: buildroot
Cc: Thomas De Schampheleire, 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 df84cce539..5e18430ecd 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.6)"
- select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6 if BR2_KERNEL_HEADERS_AS_KERNEL
+ bool "Latest version (6.7)"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7 if BR2_KERNEL_HEADERS_AS_KERNEL
config BR2_LINUX_KERNEL_LATEST_CIP_VERSION
bool "Latest CIP SLTS version (5.10.162-cip24)"
@@ -128,7 +128,7 @@ endif
config BR2_LINUX_KERNEL_VERSION
string
- default "6.6.21" if BR2_LINUX_KERNEL_LATEST_VERSION
+ default "6.7.9" 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}.x series
2024-03-07 17:48 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
2024-03-07 17:48 ` [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
2024-03-07 17:48 ` [Buildroot] [PATCH 3/3] linux: bump latest version to 6.7.9 Bernd Kuhls
@ 2024-03-11 19:08 ` Peter Korsgaard
2024-03-21 20:26 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-03-11 19:08 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Thomas Petazzoni, Giulio Benetti, Romain Naour,
Thomas De Schampheleire, buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Committed, 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* Re: [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series
2024-03-07 17:48 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
` (2 preceding siblings ...)
2024-03-11 19:08 ` [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Peter Korsgaard
@ 2024-03-21 20:26 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-03-21 20:26 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Thomas Petazzoni, Giulio Benetti, Romain Naour,
Thomas De Schampheleire, buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> linux/Config.in | 2 +-
> linux/linux.hash | 12 ++++++------
> package/linux-headers/Config.in.host | 12 ++++++------
> 3 files changed, 13 insertions(+), 13 deletions(-)
Committed to 2024.02.x, 2023.02.x and 2023.11.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