From 6829787dab49ddbb5dfd87df801bd402a5a6c7bc Mon Sep 17 00:00:00 2001 From: Julien Olivain Date: Sat, 16 Aug 2025 02:11:17 +0200 Subject: [PATCH] support/testing: test_dpdk: fix test after bootlin toolchains update Since Buildroot commit [1] "update to Bootlin toolchains 2025.08-1", the tests.package.test_dpdk fails to build its Kernel 6.6.58 with gcc 15.1.0. This commit fixes the issue by updating the test Kernel version to the latest 6.6.y version (6.6.102 at the time of this commit) which includes the fix for gcc-15. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/10984686010 [1] https://gitlab.com/buildroot.org/buildroot/-/commit/947dbc92a20c5acea7882166cae7893e6ea661e1 Signed-off-by: Julien Olivain Signed-off-by: Thomas Petazzoni (cherry picked from commit 848ffba573f7d19b39798e19bb1b8b3baf56dc4c) Signed-off-by: Thomas Perale --- support/testing/tests/package/test_dpdk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/test_dpdk.py b/support/testing/tests/package/test_dpdk.py index de2828298a..6f55cddee8 100644 --- a/support/testing/tests/package/test_dpdk.py +++ b/support/testing/tests/package/test_dpdk.py @@ -11,7 +11,7 @@ class TestDPDK(infra.basetest.BRTest): BR2_TOOLCHAIN_EXTERNAL=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_VERSION=y - BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.6.58" + BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.6.102" BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux.config" BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF=y