* [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 Bernd Kuhls
2024-03-07 17:48 ` [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
` (3 more replies)
0 siblings, 4 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 | 2 +-
linux/linux.hash | 12 ++++++------
| 12 ++++++------
3 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/linux/Config.in b/linux/Config.in
index 07d6b2b5ec..df84cce539 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -128,7 +128,7 @@ endif
config BR2_LINUX_KERNEL_VERSION
string
- default "6.6.18" if BR2_LINUX_KERNEL_LATEST_VERSION
+ default "6.6.21" 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 \
diff --git a/linux/linux.hash b/linux/linux.hash
index 15c0dc8d3d..977ad30f73 100644
--- a/linux/linux.hash
+++ b/linux/linux.hash
@@ -1,12 +1,12 @@
# From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
-sha256 4e43d8c5fba14f7c82597838011648056487b7550fd83276ad534559e8499b1d linux-6.6.18.tar.xz
-sha256 faa49ca22fb55ed4d5ca2a55e07dd10e4e171cfc3b92568a631453cd2068b39b linux-6.1.79.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
-sha256 bd84809a367eb400eb04e0e70294e6ba12fc03b6bfb5a7dfaca548f8947501b0 linux-5.15.149.tar.xz
-sha256 4ea63c5a90fdc3c459ab35c11ee8c93d2364a7cdbfb101100f8cab70d490ef6d linux-5.10.210.tar.xz
-sha256 ff54bec6d053c7994f3bb8c45021de2858ff9f740d2ccbbcf072b87821a918cf linux-5.4.269.tar.xz
+sha256 8a1e760bf2660947234109aa4fdbbe3686238b4e852157b96c59356689107e49 linux-5.15.151.tar.xz
+sha256 0cf3e467bd8d35533888327e9f8a9a9d354fdf83e8f82e9fe5a234f896a07493 linux-5.10.212.tar.xz
+sha256 cdbc61334cdadbd3945b08f03ed197c65bdf358c3383a4334b3e5b483bd95850 linux-5.4.271.tar.xz
# From https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
-sha256 83eeff613405d0045d0f717c6ac14c178678fe0a163c41d9dd8878ac0f73e352 linux-4.19.307.tar.xz
+sha256 95ada7aa6ef1c69d7a469432f936365e35b004d24e751d82c21a371edd2c84f9 linux-4.19.309.tar.xz
# Locally computed
sha256 fb0edc3c18e47d2b6974cb0880a0afb5c3fa08f50ee87dfdf24349405ea5f8ae linux-cip-5.10.162-cip24.tar.gz
sha256 b5539243f187e3d478d76d44ae13aab83952c94b885ad889df6fa9997e16a441 linux-cip-5.10.162-cip24-rt10.tar.gz
--git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index 63e82c49df..fe4fc5011e 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -403,12 +403,12 @@ endchoice
config BR2_DEFAULT_KERNEL_HEADERS
string
- default "4.19.307" if BR2_KERNEL_HEADERS_4_19
- default "5.4.269" if BR2_KERNEL_HEADERS_5_4
- default "5.10.210" if BR2_KERNEL_HEADERS_5_10
- default "5.15.149" if BR2_KERNEL_HEADERS_5_15
- default "6.1.79" if BR2_KERNEL_HEADERS_6_1
- default "6.6.18" if BR2_KERNEL_HEADERS_6_6
+ default "4.19.309" if BR2_KERNEL_HEADERS_4_19
+ default "5.4.271" if BR2_KERNEL_HEADERS_5_4
+ default "5.10.212" if BR2_KERNEL_HEADERS_5_10
+ 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 BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
default "custom" if BR2_KERNEL_HEADERS_CUSTOM_TARBALL
default BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION \
--
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 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
end of thread, other threads:[~2024-03-21 20:26 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox