From 196076c0e20320160fe9eb9bd28f168723e75da0 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Thu, 1 Dec 2022 11:38:08 -0800 Subject: machine-xilinx-default.inc: Update the IMAGE_BOOT_FILES devicetree/*.dtb Previously the system was copying the boot files directly to the /boot partition. This does not match the package behavior, where dtbs exist in /boot/devicetree. Adjust the configuration to keep them in the subdirectory. This also adjust uEnv.txt and or other users of the image-wic-utils functions. Signed-off-by: Mark Hatle --- meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-core/conf/machine') diff --git a/meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc b/meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc index 3969fa87..fb64b834 100644 --- a/meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc +++ b/meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc @@ -65,7 +65,7 @@ def get_default_image_boot_files(d): # device trees (device-tree only), these are first as they are likely desired over the kernel ones if "device-tree" in (d.getVar("MACHINE_ESSENTIAL_EXTRA_RDEPENDS") or ""): - files.append("devicetree/*.dtb") + files.append("devicetree/*.dtb;devicetree/") # device trees (kernel only) -- cgit v1.2.3-54-g00ecf