summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/conf/machine
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2022-12-01 11:38:08 -0800
committerMark Hatle <mark.hatle@amd.com>2022-12-02 08:44:13 -0600
commit196076c0e20320160fe9eb9bd28f168723e75da0 (patch)
tree184c9adfdf3109901fbcfab74b02fbd33fde4789 /meta-xilinx-core/conf/machine
parent3958d592d64f6a2c87460f7f8a0683838cb84076 (diff)
downloadmeta-xilinx-196076c0e20320160fe9eb9bd28f168723e75da0.tar.gz
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 <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core/conf/machine')
-rw-r--r--meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc2
1 files changed, 1 insertions, 1 deletions
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):
65 65
66 # device trees (device-tree only), these are first as they are likely desired over the kernel ones 66 # device trees (device-tree only), these are first as they are likely desired over the kernel ones
67 if "device-tree" in (d.getVar("MACHINE_ESSENTIAL_EXTRA_RDEPENDS") or ""): 67 if "device-tree" in (d.getVar("MACHINE_ESSENTIAL_EXTRA_RDEPENDS") or ""):
68 files.append("devicetree/*.dtb") 68 files.append("devicetree/*.dtb;devicetree/")
69 69
70 70
71 # device trees (kernel only) 71 # device trees (kernel only)