From 6195e97d6e660c13eb3eaad612e1c182abfc8b18 Mon Sep 17 00:00:00 2001 From: dowan gullient Date: Fri, 17 Apr 2026 10:59:29 +0200 Subject: [PATCH] support/testing: test_lxc: Bump kernel version to last LTS (6.18) Update the Device Tree name for the vexpress platform to match the new directory structure introduced in Linux 6.5. Since kernel 6.5, the 'arch/arm/boot/dts/' directory was restructured to avoid having thousands of files in a single folder. Device Trees for ARM (32-bit) are now organized into subdirectories. For the Versatile Express platform, the DTS file moved to the 'arm/' subdirectory. The build was failing with: make[3]: *** No rule to make target 'arch/arm/boot/dts/vexpress-v2p-ca9.dtb'. Stop. Adjust BR2_LINUX_KERNEL_INTREE_DTS_NAME from "vexpress-v2p-ca9" to "arm/vexpress-v2p-ca9". Signed-off-by: Dowan Gullient Signed-off-by: Julien Olivain --- support/testing/tests/package/test_lxc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/testing/tests/package/test_lxc.py b/support/testing/tests/package/test_lxc.py index 0d03087a2c..5d5f2fb9b4 100644 --- a/support/testing/tests/package/test_lxc.py +++ b/support/testing/tests/package/test_lxc.py @@ -13,10 +13,10 @@ class TestLxc(infra.basetest.BRTest): BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_VERSION=y - BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.15.38" + BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.18.21" BR2_LINUX_KERNEL_DEFCONFIG="vexpress" 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_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="{}" BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0" BR2_INIT_SYSTEMD=y