summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManjukumar Matha <manjukumar.harthikote-matha@xilinx.com>2018-01-08 16:25:57 -0800
committerManjukumar Matha <manjukumar.harthikote-matha@xilinx.com>2018-01-09 08:39:46 -0800
commitebec5ccd1129e6df5dc43c1cfdb59da70dcc3eac (patch)
tree32a0e378ce8e59b15447587615ad3a862e03f5b8
parent1138c5623d3e0c415d18b109ccf6c4f301c173f6 (diff)
downloadmeta-xilinx-ebec5ccd1129e6df5dc43c1cfdb59da70dcc3eac.tar.gz
device-tree.bb: Change depedency to do_configure task
This patch is required to remove circular depedency while compiling kernel image simpleImage.mb for MB machines. We need the task to be depedent on do_configure because kernel will depend on device-tree to be available while compiling simpleImage.mb. The kernel source is available in work-shared/kernel-source after do_configure task is run, this patch changes the depedency from do_shared_workdir to do_configure. Reviewed-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
-rw-r--r--meta-xilinx-bsp/recipes-bsp/device-tree/device-tree.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-bsp/recipes-bsp/device-tree/device-tree.bb b/meta-xilinx-bsp/recipes-bsp/device-tree/device-tree.bb
index 7c502838..a7370674 100644
--- a/meta-xilinx-bsp/recipes-bsp/device-tree/device-tree.bb
+++ b/meta-xilinx-bsp/recipes-bsp/device-tree/device-tree.bb
@@ -51,7 +51,7 @@ DEVICETREE_PP_FLAGS ?= " \
51python () { 51python () {
52 # auto add dependency on kernel tree 52 # auto add dependency on kernel tree
53 if d.getVar("KERNEL_DTS_INCLUDE") != "": 53 if d.getVar("KERNEL_DTS_INCLUDE") != "":
54 d.appendVarFlag("do_compile", "depends", " virtual/kernel:do_shared_workdir") 54 d.appendVarFlag("do_compile", "depends", " virtual/kernel:do_configure")
55} 55}
56 56
57do_compile() { 57do_compile() {