summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/conf
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2022-12-04 13:24:40 -0800
committerMark Hatle <mark.hatle@amd.com>2022-12-05 10:35:50 -0600
commit404d51ac01c342ebf0e666ac62e1871c334e2f67 (patch)
treec9eeb29afdb0b69722e3c69bf582404ba97371b8 /meta-xilinx-core/conf
parent0ebd7940427d80105f803b5556403c36dd32f375 (diff)
downloadmeta-xilinx-404d51ac01c342ebf0e666ac62e1871c334e2f67.tar.gz
u-boot-xlnx-scr: Load openamp.dtbo if present
Loading the devicetree/openamp.dtbo if present and merge into the loaded system dtb. (Note, not all boot modes support this behavior.) Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core/conf')
-rw-r--r--meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc1
1 files changed, 1 insertions, 0 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 6a0e1a2a..38996384 100644
--- a/meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc
+++ b/meta-xilinx-core/conf/machine/include/machine-xilinx-default.inc
@@ -93,6 +93,7 @@ def get_default_image_boot_files(d):
93 # device trees (device-tree only), these are first as they are likely desired over the kernel ones 93 # device trees (device-tree only), these are first as they are likely desired over the kernel ones
94 if "device-tree" in (d.getVar("PREFERRED_PROVIDER_virtual/dtb") or ""): 94 if "device-tree" in (d.getVar("PREFERRED_PROVIDER_virtual/dtb") or ""):
95 files.append("devicetree/*.dtb;devicetree/") 95 files.append("devicetree/*.dtb;devicetree/")
96 files.append("devicetree/*.dtbo;devicetree/")
96 97
97 # device trees (kernel only) 98 # device trees (kernel only)
98 if d.getVar("KERNEL_DEVICETREE"): 99 if d.getVar("KERNEL_DEVICETREE"):