summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAppana Durga Kedareswara rao <appana.durga.rao@xilinx.com>2020-01-22 19:40:39 +0530
committerMark Hatle <mark.hatle@xilinx.com>2020-02-27 08:33:25 -0800
commit651e9e194475dbb0792c8b4b27df4891223e726f (patch)
tree8c8c7afa5b93c7b4a3013a1aee12d8ea3a4be17e
parentfbf4fc98984bf755ceaaefcaa25ca25d172a34b6 (diff)
downloadmeta-xilinx-651e9e194475dbb0792c8b4b27df4891223e726f.tar.gz
meta-xilinx-standalone: classes: cleanup the class
In the esw repo linker generation is moved to the liner_gen.py file, which needs to be called before do_configure. This patch updates the bbclass for the same. Also updated the DEPENDS variable list. Signed-off-by: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
-rw-r--r--meta-xilinx-standalone/classes/esw_examples.bbclass7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-xilinx-standalone/classes/esw_examples.bbclass b/meta-xilinx-standalone/classes/esw_examples.bbclass
index 50bd6bd8..739d2d6e 100644
--- a/meta-xilinx-standalone/classes/esw_examples.bbclass
+++ b/meta-xilinx-standalone/classes/esw_examples.bbclass
@@ -1,6 +1,11 @@
1inherit esw deploy python3native 1inherit esw deploy python3native
2 2
3DEPENDS += "dtc-native python3-pyyaml-native xilstandalone xiltimer device-tree" 3DEPENDS += "dtc-native python3-pyyaml-native xilstandalone libxil xiltimer device-tree"
4
5do_configure_prepend() {
6 cd ${S}
7 nativepython3 ${S}/scripts/linker_gen.py -d ${DTBFILE} -o ${OECMAKE_SOURCEPATH}
8}
4 9
5do_generate_eglist () { 10do_generate_eglist () {
6 cd ${S} 11 cd ${S}