summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@xilinx.com>2020-03-18 10:04:23 -0700
committerMark Hatle <mark.hatle@xilinx.com>2020-03-18 10:04:23 -0700
commit4e37142f42eebecf8a74de83103feae67883d3d8 (patch)
tree7903e80e72a5cc8a11309c15ddd8f4cef15ee48c
parent6e5f44c4075b68105670cdb3e0dff9421e530e2f (diff)
downloadmeta-xilinx-4e37142f42eebecf8a74de83103feae67883d3d8.tar.gz
esw.bbclass: Move DTBFILE to a single definition
The DTBFILE defintions were each the same, and specified only on a per machine basis. Moving to a default will allow this to work with an arbitrary number of macines, and also allow a machinet override the value if necessary. Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
-rw-r--r--meta-xilinx-standalone/classes/esw.bbclass7
1 files changed, 1 insertions, 6 deletions
diff --git a/meta-xilinx-standalone/classes/esw.bbclass b/meta-xilinx-standalone/classes/esw.bbclass
index 0748b569..cca1af04 100644
--- a/meta-xilinx-standalone/classes/esw.bbclass
+++ b/meta-xilinx-standalone/classes/esw.bbclass
@@ -21,12 +21,7 @@ inherit ccmake
21COMPATIBLE_OS = "elf" 21COMPATIBLE_OS = "elf"
22COMPATIBLE_OS_arm = "eabi" 22COMPATIBLE_OS_arm = "eabi"
23 23
24DTBFILE_microblaze-pmu ?= "${RECIPE_SYSROOT}/boot/devicetree/system-top.dtb" 24DTBFILE ?= "${RECIPE_SYSROOT}/boot/devicetree/system-top.dtb"
25DTBFILE_microblaze-plm ?= "${RECIPE_SYSROOT}/boot/devicetree/system-top.dtb"
26DTBFILE_cortexa53-zynqmp ?= "${RECIPE_SYSROOT}/boot/devicetree/system-top.dtb"
27DTBFILE_cortexr5-zynqmp ?= "${RECIPE_SYSROOT}/boot/devicetree/system-top.dtb"
28DTBFILE_cortexa72-versal ?= "${RECIPE_SYSROOT}/boot/devicetree/system-top.dtb"
29DTBFILE_cortexr5-versal ?= "${RECIPE_SYSROOT}/boot/devicetree/system-top.dtb"
30 25
31def get_xlnx_cmake_machine(fam, d): 26def get_xlnx_cmake_machine(fam, d):
32 if (fam == 'zynqmp'): 27 if (fam == 'zynqmp'):