From ba604325c4329f637834ad4e9b9feff14054cc9f Mon Sep 17 00:00:00 2001 From: Dowan Gullient Date: Tue, 12 May 2026 10:07:36 +0200 Subject: [PATCH] support/testing: test_file_capabilities: Fix build failure Buildroot commit [1] updated the Kernel for this test, but forgot to add the "arm/" prefix for the dtb path. Since Linux 6.5, .dts files have been moved to "arch/arm/boot/dts/" and the test was not able to find the file anymore, which caused the build to fail. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/14297955524 [1] https://gitlab.com/buildroot.org/buildroot/-/commit/74e7e07f83d6575f369295d17199ea488d87d233 Signed-off-by: Dowan Gullient [Julien: reword commit log] Signed-off-by: Julien Olivain --- support/testing/tests/core/test_file_capabilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/core/test_file_capabilities.py b/support/testing/tests/core/test_file_capabilities.py index ede7b48555..f57a7cee69 100644 --- a/support/testing/tests/core/test_file_capabilities.py +++ b/support/testing/tests/core/test_file_capabilities.py @@ -17,7 +17,7 @@ class TestFileCapabilities(infra.basetest.BRTest): BR2_LINUX_KERNEL_DEFCONFIG="vexpress" BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="{}" BR2_LINUX_KERNEL_DTS_SUPPORT=y - BR2_LINUX_KERNEL_INTREE_DTS_NAME="vexpress-v2p-ca9" + BR2_LINUX_KERNEL_INTREE_DTS_NAME="arm/vexpress-v2p-ca9" BR2_PACKAGE_LIBCAP=y BR2_PACKAGE_LIBCAP_TOOLS=y BR2_TARGET_ROOTFS_SQUASHFS=y