* [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers
@ 2024-03-16 8:43 Bernd Kuhls
2024-03-16 8:43 ` [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8 Bernd Kuhls
` (4 more replies)
0 siblings, 5 replies; 15+ messages in thread
From: Bernd Kuhls @ 2024-03-16 8:43 UTC (permalink / raw)
To: buildroot
Cc: Thomas Petazzoni, Giulio Benetti, Romain Naour,
Thomas De Schampheleire
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..6b0c5de1f6 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 a9b99fb376f9fcd699c7c252aeef3bb5ba26280eb049711ac091b2eb2b487c03 linux-6.7.10.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..1c2500fb79 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.10" 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 1641dbae06..d71fb96d40 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] 15+ messages in thread
* [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8
2024-03-16 8:43 [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
@ 2024-03-16 8:43 ` Bernd Kuhls
2024-03-16 19:25 ` Arnout Vandecappelle via buildroot
2024-03-24 18:19 ` Arnout Vandecappelle via buildroot
2024-03-16 8:43 ` [Buildroot] [PATCH 3/5] {toolchain, linux-headers}: add support for 6.8 headers Bernd Kuhls
` (3 subsequent siblings)
4 siblings, 2 replies; 15+ messages in thread
From: Bernd Kuhls @ 2024-03-16 8:43 UTC (permalink / raw)
To: buildroot
Cc: Thomas Petazzoni, Giulio Benetti, Romain Naour,
Thomas De Schampheleire
For details see https://bugs.busybox.net/show_bug.cgi?id=15934
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/busybox/busybox-minimal.config | 3 +--
package/busybox/busybox.config | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/package/busybox/busybox-minimal.config b/package/busybox/busybox-minimal.config
index 1e7ad1d357..5d2a30806a 100644
--- a/package/busybox/busybox-minimal.config
+++ b/package/busybox/busybox-minimal.config
@@ -955,8 +955,7 @@ CONFIG_PING=y
CONFIG_ROUTE=y
# CONFIG_SLATTACH is not set
# CONFIG_SSL_CLIENT is not set
-CONFIG_TC=y
-CONFIG_FEATURE_TC_INGRESS=y
+# CONFIG_TC is not set
# CONFIG_TCPSVD is not set
# CONFIG_UDPSVD is not set
CONFIG_TELNET=y
diff --git a/package/busybox/busybox.config b/package/busybox/busybox.config
index 6e8bd2799d..cfd16172fa 100644
--- a/package/busybox/busybox.config
+++ b/package/busybox/busybox.config
@@ -968,8 +968,7 @@ CONFIG_FEATURE_FANCY_PING=y
CONFIG_ROUTE=y
# CONFIG_SLATTACH is not set
# CONFIG_SSL_CLIENT is not set
-CONFIG_TC=y
-CONFIG_FEATURE_TC_INGRESS=y
+# CONFIG_TC is not set
# CONFIG_TCPSVD is not set
# CONFIG_UDPSVD is not set
CONFIG_TELNET=y
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [Buildroot] [PATCH 3/5] {toolchain, linux-headers}: add support for 6.8 headers
2024-03-16 8:43 [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
2024-03-16 8:43 ` [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8 Bernd Kuhls
@ 2024-03-16 8:43 ` Bernd Kuhls
2024-03-16 8:43 ` [Buildroot] [PATCH 4/5] linux: bump latest version to 6.8 Bernd Kuhls
` (2 subsequent siblings)
4 siblings, 0 replies; 15+ messages in thread
From: Bernd Kuhls @ 2024-03-16 8:43 UTC (permalink / raw)
To: buildroot
Cc: Thomas Petazzoni, Giulio Benetti, Romain Naour,
Thomas De Schampheleire
And add (and default to) 6.8 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 6b0c5de1f6..846e59d24e 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 8d0c8936e3140a0fbdf511ad7a9f21121598f3656743898f47bb9052d37cff68 linux-6.8.1.tar.xz
sha256 a9b99fb376f9fcd699c7c252aeef3bb5ba26280eb049711ac091b2eb2b487c03 linux-6.7.10.tar.xz
sha256 ee0b430148da94d2b13608b8d80b007b7d281dc90e3f19b63cf9a9943810e457 linux-6.6.21.tar.xz
sha256 0ebd861c6fd47bb0a9d3a09664d704833d1a54750c7bf9c4ad8b5e9cbd49342b linux-6.1.81.tar.xz
--git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index 1c2500fb79..227d41101f 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_7
+ default BR2_KERNEL_HEADERS_6_8
help
Select the kernel version to get headers from.
@@ -51,6 +51,10 @@ config BR2_KERNEL_HEADERS_6_6
config BR2_KERNEL_HEADERS_6_7
bool "Linux 6.7.x kernel headers"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
+
+config BR2_KERNEL_HEADERS_6_8
+ bool "Linux 6.8.x kernel headers"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
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_8
+ bool "6.8.x or later"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
+
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_7
- bool "6.7.x or later"
+ bool "6.7.x"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6
@@ -418,6 +426,7 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "6.1.81" if BR2_KERNEL_HEADERS_6_1
default "6.6.21" if BR2_KERNEL_HEADERS_6_6
default "6.7.10" if BR2_KERNEL_HEADERS_6_7
+ default "6.8.1" if BR2_KERNEL_HEADERS_6_8
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 d71fb96d40..e8b3db64fb 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -649,6 +649,10 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
bool
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
+
+config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
+ bool
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
select BR2_TOOLCHAIN_HEADERS_LATEST
# This should be selected by the latest version, above, to indicate that
@@ -662,6 +666,7 @@ config BR2_TOOLCHAIN_HEADERS_LATEST
# stops affecting a value on the first matching default.
config BR2_TOOLCHAIN_HEADERS_AT_LEAST
string
+ default "6.8" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
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
diff --git a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
index a7c239dcab..f7825cb88e 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_8
+ bool "6.8.x or later"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
+
config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_7
- bool "6.7.x or later"
+ bool "6.7.x"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_6
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [Buildroot] [PATCH 4/5] linux: bump latest version to 6.8
2024-03-16 8:43 [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
2024-03-16 8:43 ` [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8 Bernd Kuhls
2024-03-16 8:43 ` [Buildroot] [PATCH 3/5] {toolchain, linux-headers}: add support for 6.8 headers Bernd Kuhls
@ 2024-03-16 8:43 ` Bernd Kuhls
2024-03-25 10:07 ` Peter Korsgaard
2024-03-16 8:43 ` [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
2024-03-24 15:59 ` [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Arnout Vandecappelle via buildroot
4 siblings, 1 reply; 15+ messages in thread
From: Bernd Kuhls @ 2024-03-16 8:43 UTC (permalink / raw)
To: buildroot
Cc: Thomas Petazzoni, Giulio Benetti, Romain Naour,
Thomas De Schampheleire
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..2767b709d4 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.8)"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8 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.8.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] 15+ messages in thread
* [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series
2024-03-16 8:43 [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
` (2 preceding siblings ...)
2024-03-16 8:43 ` [Buildroot] [PATCH 4/5] linux: bump latest version to 6.8 Bernd Kuhls
@ 2024-03-16 8:43 ` Bernd Kuhls
2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
` (2 more replies)
2024-03-24 15:59 ` [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Arnout Vandecappelle via buildroot
4 siblings, 3 replies; 15+ messages in thread
From: Bernd Kuhls @ 2024-03-16 8:43 UTC (permalink / raw)
To: buildroot
Cc: Thomas Petazzoni, Giulio Benetti, Romain Naour,
Thomas De Schampheleire
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
linux/linux.hash | 12 ++++++------
| 12 ++++++------
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/linux/linux.hash b/linux/linux.hash
index 846e59d24e..4fa9f701cd 100644
--- a/linux/linux.hash
+++ b/linux/linux.hash
@@ -1,14 +1,14 @@
# From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
sha256 8d0c8936e3140a0fbdf511ad7a9f21121598f3656743898f47bb9052d37cff68 linux-6.8.1.tar.xz
sha256 a9b99fb376f9fcd699c7c252aeef3bb5ba26280eb049711ac091b2eb2b487c03 linux-6.7.10.tar.xz
-sha256 ee0b430148da94d2b13608b8d80b007b7d281dc90e3f19b63cf9a9943810e457 linux-6.6.21.tar.xz
-sha256 0ebd861c6fd47bb0a9d3a09664d704833d1a54750c7bf9c4ad8b5e9cbd49342b linux-6.1.81.tar.xz
+sha256 23e3e7b56407250f5411bdab95763d0bc4e3a19dfa431d951df7eacabd61a2f4 linux-6.6.22.tar.xz
+sha256 d150d2d9d416877668d8b56f75759f166168d192419eefaa942ed67225cbec06 linux-6.1.82.tar.xz
# From https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
-sha256 8a1e760bf2660947234109aa4fdbbe3686238b4e852157b96c59356689107e49 linux-5.15.151.tar.xz
-sha256 0cf3e467bd8d35533888327e9f8a9a9d354fdf83e8f82e9fe5a234f896a07493 linux-5.10.212.tar.xz
-sha256 cdbc61334cdadbd3945b08f03ed197c65bdf358c3383a4334b3e5b483bd95850 linux-5.4.271.tar.xz
+sha256 f0805225f4a5b24d0bba9302c2c2f261c04f737ac5dd931da9b112e9f3e4a47e linux-5.15.152.tar.xz
+sha256 84cf30223239ec3333a5f7b2a7fba2042bba70d1582a139f7543956af871ad80 linux-5.10.213.tar.xz
+sha256 3599d5959a403e64be407d7f05e56cb270d6ddd154e89a596609919ab1e2e366 linux-5.4.272.tar.xz
# From https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
-sha256 95ada7aa6ef1c69d7a469432f936365e35b004d24e751d82c21a371edd2c84f9 linux-4.19.309.tar.xz
+sha256 95ec94c4ab8f46d8a54430893f9bd653c46b0f1587d216818aa8f52fd313de69 linux-4.19.310.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 227d41101f..4c3651450e 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -419,12 +419,12 @@ endchoice
config BR2_DEFAULT_KERNEL_HEADERS
string
- 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 "4.19.310" if BR2_KERNEL_HEADERS_4_19
+ default "5.4.272" if BR2_KERNEL_HEADERS_5_4
+ default "5.10.213" if BR2_KERNEL_HEADERS_5_10
+ default "5.15.152" if BR2_KERNEL_HEADERS_5_15
+ default "6.1.82" if BR2_KERNEL_HEADERS_6_1
+ default "6.6.22" if BR2_KERNEL_HEADERS_6_6
default "6.7.10" if BR2_KERNEL_HEADERS_6_7
default "6.8.1" if BR2_KERNEL_HEADERS_6_8
default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8
2024-03-16 8:43 ` [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8 Bernd Kuhls
@ 2024-03-16 19:25 ` Arnout Vandecappelle via buildroot
2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
2024-03-24 18:19 ` Arnout Vandecappelle via buildroot
1 sibling, 1 reply; 15+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-03-16 19:25 UTC (permalink / raw)
To: Bernd Kuhls, buildroot
Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
Thomas Petazzoni
On 16/03/2024 09:43, Bernd Kuhls wrote:
> For details see https://bugs.busybox.net/show_bug.cgi?id=15934
I'm a bit afraid to apply this. Hopefully the issue will be fixed at some
point in busybox; then, we should probably revert this patch (though honestly I
don't know what tc is doing in the minimal config...).
Regards,
Arnout
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> package/busybox/busybox-minimal.config | 3 +--
> package/busybox/busybox.config | 3 +--
> 2 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/package/busybox/busybox-minimal.config b/package/busybox/busybox-minimal.config
> index 1e7ad1d357..5d2a30806a 100644
> --- a/package/busybox/busybox-minimal.config
> +++ b/package/busybox/busybox-minimal.config
> @@ -955,8 +955,7 @@ CONFIG_PING=y
> CONFIG_ROUTE=y
> # CONFIG_SLATTACH is not set
> # CONFIG_SSL_CLIENT is not set
> -CONFIG_TC=y
> -CONFIG_FEATURE_TC_INGRESS=y
> +# CONFIG_TC is not set
> # CONFIG_TCPSVD is not set
> # CONFIG_UDPSVD is not set
> CONFIG_TELNET=y
> diff --git a/package/busybox/busybox.config b/package/busybox/busybox.config
> index 6e8bd2799d..cfd16172fa 100644
> --- a/package/busybox/busybox.config
> +++ b/package/busybox/busybox.config
> @@ -968,8 +968,7 @@ CONFIG_FEATURE_FANCY_PING=y
> CONFIG_ROUTE=y
> # CONFIG_SLATTACH is not set
> # CONFIG_SSL_CLIENT is not set
> -CONFIG_TC=y
> -CONFIG_FEATURE_TC_INGRESS=y
> +# CONFIG_TC is not set
> # CONFIG_TCPSVD is not set
> # CONFIG_UDPSVD is not set
> CONFIG_TELNET=y
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers
2024-03-16 8:43 [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
` (3 preceding siblings ...)
2024-03-16 8:43 ` [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
@ 2024-03-24 15:59 ` Arnout Vandecappelle via buildroot
4 siblings, 0 replies; 15+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-03-24 15:59 UTC (permalink / raw)
To: Bernd Kuhls, buildroot
Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
Thomas Petazzoni
On 16/03/2024 09:43, Bernd Kuhls wrote:
> And add (and default to) 6.7 to linux-headers.
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Applied to master, thanks.
Regards,
Arnout
> ---
> 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(-)
>
> diff --git a/linux/linux.hash b/linux/linux.hash
> index 977ad30f73..6b0c5de1f6 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 a9b99fb376f9fcd699c7c252aeef3bb5ba26280eb049711ac091b2eb2b487c03 linux-6.7.10.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
> diff --git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
> index fe4fc5011e..1c2500fb79 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.10" 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 1641dbae06..d71fb96d40 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
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8
2024-03-16 19:25 ` Arnout Vandecappelle via buildroot
@ 2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
2024-03-24 17:45 ` Peter Korsgaard
0 siblings, 1 reply; 15+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-03-24 16:00 UTC (permalink / raw)
To: Bernd Kuhls, buildroot, Thomas Petazzoni, Yann E. MORIN,
Peter Korsgaard, Romain Naour
Cc: Giulio Benetti
On 16/03/2024 20:25, Arnout Vandecappelle wrote:
>
>
> On 16/03/2024 09:43, Bernd Kuhls wrote:
>> For details see https://bugs.busybox.net/show_bug.cgi?id=15934
>
> I'm a bit afraid to apply this. Hopefully the issue will be fixed at some
> point in busybox; then, we should probably revert this patch (though honestly
> I don't know what tc is doing in the minimal config...).
I didn't apply this one nor the following two. I'm hoping the other
maintainers can pipe up with ideas of how to best deal with this?
Regards,
Arnout
>
> Regards,
> Arnout
>
>>
>> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
>> ---
>> package/busybox/busybox-minimal.config | 3 +--
>> package/busybox/busybox.config | 3 +--
>> 2 files changed, 2 insertions(+), 4 deletions(-)
>>
>> diff --git a/package/busybox/busybox-minimal.config
>> b/package/busybox/busybox-minimal.config
>> index 1e7ad1d357..5d2a30806a 100644
>> --- a/package/busybox/busybox-minimal.config
>> +++ b/package/busybox/busybox-minimal.config
>> @@ -955,8 +955,7 @@ CONFIG_PING=y
>> CONFIG_ROUTE=y
>> # CONFIG_SLATTACH is not set
>> # CONFIG_SSL_CLIENT is not set
>> -CONFIG_TC=y
>> -CONFIG_FEATURE_TC_INGRESS=y
>> +# CONFIG_TC is not set
>> # CONFIG_TCPSVD is not set
>> # CONFIG_UDPSVD is not set
>> CONFIG_TELNET=y
>> diff --git a/package/busybox/busybox.config b/package/busybox/busybox.config
>> index 6e8bd2799d..cfd16172fa 100644
>> --- a/package/busybox/busybox.config
>> +++ b/package/busybox/busybox.config
>> @@ -968,8 +968,7 @@ CONFIG_FEATURE_FANCY_PING=y
>> CONFIG_ROUTE=y
>> # CONFIG_SLATTACH is not set
>> # CONFIG_SSL_CLIENT is not set
>> -CONFIG_TC=y
>> -CONFIG_FEATURE_TC_INGRESS=y
>> +# CONFIG_TC is not set
>> # CONFIG_TCPSVD is not set
>> # CONFIG_UDPSVD is not set
>> CONFIG_TELNET=y
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series
2024-03-16 8:43 ` [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
@ 2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
2024-03-25 10:05 ` Peter Korsgaard
2024-03-25 10:13 ` Peter Korsgaard
2 siblings, 0 replies; 15+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-03-24 16:00 UTC (permalink / raw)
To: Bernd Kuhls, buildroot
Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
Thomas Petazzoni
On 16/03/2024 09:43, Bernd Kuhls wrote:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Applied to master, thanks.
Regards,
Arnout
> ---
> linux/linux.hash | 12 ++++++------
> package/linux-headers/Config.in.host | 12 ++++++------
> 2 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/linux/linux.hash b/linux/linux.hash
> index 846e59d24e..4fa9f701cd 100644
> --- a/linux/linux.hash
> +++ b/linux/linux.hash
> @@ -1,14 +1,14 @@
> # From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
> sha256 8d0c8936e3140a0fbdf511ad7a9f21121598f3656743898f47bb9052d37cff68 linux-6.8.1.tar.xz
> sha256 a9b99fb376f9fcd699c7c252aeef3bb5ba26280eb049711ac091b2eb2b487c03 linux-6.7.10.tar.xz
> -sha256 ee0b430148da94d2b13608b8d80b007b7d281dc90e3f19b63cf9a9943810e457 linux-6.6.21.tar.xz
> -sha256 0ebd861c6fd47bb0a9d3a09664d704833d1a54750c7bf9c4ad8b5e9cbd49342b linux-6.1.81.tar.xz
> +sha256 23e3e7b56407250f5411bdab95763d0bc4e3a19dfa431d951df7eacabd61a2f4 linux-6.6.22.tar.xz
> +sha256 d150d2d9d416877668d8b56f75759f166168d192419eefaa942ed67225cbec06 linux-6.1.82.tar.xz
> # From https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
> -sha256 8a1e760bf2660947234109aa4fdbbe3686238b4e852157b96c59356689107e49 linux-5.15.151.tar.xz
> -sha256 0cf3e467bd8d35533888327e9f8a9a9d354fdf83e8f82e9fe5a234f896a07493 linux-5.10.212.tar.xz
> -sha256 cdbc61334cdadbd3945b08f03ed197c65bdf358c3383a4334b3e5b483bd95850 linux-5.4.271.tar.xz
> +sha256 f0805225f4a5b24d0bba9302c2c2f261c04f737ac5dd931da9b112e9f3e4a47e linux-5.15.152.tar.xz
> +sha256 84cf30223239ec3333a5f7b2a7fba2042bba70d1582a139f7543956af871ad80 linux-5.10.213.tar.xz
> +sha256 3599d5959a403e64be407d7f05e56cb270d6ddd154e89a596609919ab1e2e366 linux-5.4.272.tar.xz
> # From https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
> -sha256 95ada7aa6ef1c69d7a469432f936365e35b004d24e751d82c21a371edd2c84f9 linux-4.19.309.tar.xz
> +sha256 95ec94c4ab8f46d8a54430893f9bd653c46b0f1587d216818aa8f52fd313de69 linux-4.19.310.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
> diff --git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
> index 227d41101f..4c3651450e 100644
> --- a/package/linux-headers/Config.in.host
> +++ b/package/linux-headers/Config.in.host
> @@ -419,12 +419,12 @@ endchoice
>
> config BR2_DEFAULT_KERNEL_HEADERS
> string
> - 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 "4.19.310" if BR2_KERNEL_HEADERS_4_19
> + default "5.4.272" if BR2_KERNEL_HEADERS_5_4
> + default "5.10.213" if BR2_KERNEL_HEADERS_5_10
> + default "5.15.152" if BR2_KERNEL_HEADERS_5_15
> + default "6.1.82" if BR2_KERNEL_HEADERS_6_1
> + default "6.6.22" if BR2_KERNEL_HEADERS_6_6
> default "6.7.10" if BR2_KERNEL_HEADERS_6_7
> default "6.8.1" if BR2_KERNEL_HEADERS_6_8
> default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8
2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
@ 2024-03-24 17:45 ` Peter Korsgaard
2024-03-24 18:15 ` Arnout Vandecappelle via buildroot
0 siblings, 1 reply; 15+ messages in thread
From: Peter Korsgaard @ 2024-03-24 17:45 UTC (permalink / raw)
To: Arnout Vandecappelle
Cc: Bernd Kuhls, Yann E. MORIN, Thomas Petazzoni, buildroot,
Romain Naour, Giulio Benetti
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
> On 16/03/2024 20:25, Arnout Vandecappelle wrote:
>>
>>
>> On 16/03/2024 09:43, Bernd Kuhls wrote:
>>> For details see https://bugs.busybox.net/show_bug.cgi?id=15934
>>
>> I'm a bit afraid to apply this. Hopefully the issue will be fixed
>> at some point in busybox; then, we should probably revert this patch
>> (though honestly I don't know what tc is doing in the minimal
>> config...).
> I didn't apply this one nor the following two. I'm hoping the other
> maintainers can pipe up with ideas of how to best deal with this?
I also don't think having tc enabled by default makes a lot of
sense. Notice that Uwe recently posted a patch upstream to fix the build
issue:
http://lists.busybox.net/pipermail/busybox/2024-March/090678.html
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8
2024-03-24 17:45 ` Peter Korsgaard
@ 2024-03-24 18:15 ` Arnout Vandecappelle via buildroot
0 siblings, 0 replies; 15+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-03-24 18:15 UTC (permalink / raw)
To: Peter Korsgaard
Cc: Bernd Kuhls, Yann E. MORIN, Thomas Petazzoni, buildroot,
Romain Naour, Giulio Benetti
On 24/03/2024 18:45, Peter Korsgaard wrote:
>>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
>
> > On 16/03/2024 20:25, Arnout Vandecappelle wrote:
> >>
> >>
> >> On 16/03/2024 09:43, Bernd Kuhls wrote:
> >>> For details see https://bugs.busybox.net/show_bug.cgi?id=15934
> >>
> >> I'm a bit afraid to apply this. Hopefully the issue will be fixed
> >> at some point in busybox; then, we should probably revert this patch
> >> (though honestly I don't know what tc is doing in the minimal
> >> config...).
>
>
> > I didn't apply this one nor the following two. I'm hoping the other
> > maintainers can pipe up with ideas of how to best deal with this?
>
> I also don't think having tc enabled by default makes a lot of
Good point! I'll apply this after all then, with an updated commit log.
Regards,
Arnout
> sense. Notice that Uwe recently posted a patch upstream to fix the build
> issue:
>
> http://lists.busybox.net/pipermail/busybox/2024-March/090678.html
>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8
2024-03-16 8:43 ` [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8 Bernd Kuhls
2024-03-16 19:25 ` Arnout Vandecappelle via buildroot
@ 2024-03-24 18:19 ` Arnout Vandecappelle via buildroot
1 sibling, 0 replies; 15+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-03-24 18:19 UTC (permalink / raw)
To: Bernd Kuhls, buildroot
Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
Thomas Petazzoni
On 16/03/2024 09:43, Bernd Kuhls wrote:
> For details see https://bugs.busybox.net/show_bug.cgi?id=15934
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
As mentioned, patches 2, 3 and 4 are applied to master now as well. Thanks!
Regards,
Arnout
> ---
> package/busybox/busybox-minimal.config | 3 +--
> package/busybox/busybox.config | 3 +--
> 2 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/package/busybox/busybox-minimal.config b/package/busybox/busybox-minimal.config
> index 1e7ad1d357..5d2a30806a 100644
> --- a/package/busybox/busybox-minimal.config
> +++ b/package/busybox/busybox-minimal.config
> @@ -955,8 +955,7 @@ CONFIG_PING=y
> CONFIG_ROUTE=y
> # CONFIG_SLATTACH is not set
> # CONFIG_SSL_CLIENT is not set
> -CONFIG_TC=y
> -CONFIG_FEATURE_TC_INGRESS=y
> +# CONFIG_TC is not set
> # CONFIG_TCPSVD is not set
> # CONFIG_UDPSVD is not set
> CONFIG_TELNET=y
> diff --git a/package/busybox/busybox.config b/package/busybox/busybox.config
> index 6e8bd2799d..cfd16172fa 100644
> --- a/package/busybox/busybox.config
> +++ b/package/busybox/busybox.config
> @@ -968,8 +968,7 @@ CONFIG_FEATURE_FANCY_PING=y
> CONFIG_ROUTE=y
> # CONFIG_SLATTACH is not set
> # CONFIG_SSL_CLIENT is not set
> -CONFIG_TC=y
> -CONFIG_FEATURE_TC_INGRESS=y
> +# CONFIG_TC is not set
> # CONFIG_TCPSVD is not set
> # CONFIG_UDPSVD is not set
> CONFIG_TELNET=y
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series
2024-03-16 8:43 ` [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
@ 2024-03-25 10:05 ` Peter Korsgaard
2024-03-25 10:13 ` Peter Korsgaard
2 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-03-25 10:05 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
Thomas Petazzoni, buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> linux/linux.hash | 12 ++++++------
> package/linux-headers/Config.in.host | 12 ++++++------
This forgot to update linux/Config.in, so that is still using 6.6.21
(which no longer has the hash).
I'll send a patch to fix that.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 4/5] linux: bump latest version to 6.8
2024-03-16 8:43 ` [Buildroot] [PATCH 4/5] linux: bump latest version to 6.8 Bernd Kuhls
@ 2024-03-25 10:07 ` Peter Korsgaard
0 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-03-25 10:07 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
Thomas Petazzoni, buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> 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..2767b709d4 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.8)"
> + select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8 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.8.1" if BR2_LINUX_KERNEL_LATEST_VERSION
Ahh, it is implicitly fixed by this on master.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series
2024-03-16 8:43 ` [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
2024-03-25 10:05 ` Peter Korsgaard
@ 2024-03-25 10:13 ` Peter Korsgaard
2 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-03-25 10:13 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
Thomas Petazzoni, buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> linux/linux.hash | 12 ++++++------
> package/linux-headers/Config.in.host | 12 ++++++------
> 2 files changed, 12 insertions(+), 12 deletions(-)
Committed to 2024.02.x 2023.02.x and 2023.11.x after fixing
BR2_LINUX_KERNEL_LATEST_VERSION, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2024-03-25 10:13 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-16 8:43 [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Bernd Kuhls
2024-03-16 8:43 ` [Buildroot] [PATCH 2/5] package/busybox: disable tc to fix build with kernel >= 6.8 Bernd Kuhls
2024-03-16 19:25 ` Arnout Vandecappelle via buildroot
2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
2024-03-24 17:45 ` Peter Korsgaard
2024-03-24 18:15 ` Arnout Vandecappelle via buildroot
2024-03-24 18:19 ` Arnout Vandecappelle via buildroot
2024-03-16 8:43 ` [Buildroot] [PATCH 3/5] {toolchain, linux-headers}: add support for 6.8 headers Bernd Kuhls
2024-03-16 8:43 ` [Buildroot] [PATCH 4/5] linux: bump latest version to 6.8 Bernd Kuhls
2024-03-25 10:07 ` Peter Korsgaard
2024-03-16 8:43 ` [Buildroot] [PATCH 5/5] {linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series Bernd Kuhls
2024-03-24 16:00 ` Arnout Vandecappelle via buildroot
2024-03-25 10:05 ` Peter Korsgaard
2024-03-25 10:13 ` Peter Korsgaard
2024-03-24 15:59 ` [Buildroot] [PATCH 1/5] {toolchain, linux-headers}: add support for 6.7 headers Arnout Vandecappelle via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox