diff options
author | 2018-01-08 16:25:57 -0800 | |
---|---|---|
committer | 2018-01-09 08:39:46 -0800 | |
commit | ebec5ccd1129e6df5dc43c1cfdb59da70dcc3eac (patch) | |
tree | 32a0e378ce8e59b15447587615ad3a862e03f5b8 | |
parent | 1138c5623d3e0c415d18b109ccf6c4f301c173f6 (diff) | |
download | meta-xilinx-ebec5ccd1129e6df5dc43c1cfdb59da70dcc3eac.tar.gz meta-xilinx-ebec5ccd1129e6df5dc43c1cfdb59da70dcc3eac.tar.bz2 meta-xilinx-ebec5ccd1129e6df5dc43c1cfdb59da70dcc3eac.zip |
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.bb | 2 |
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 ?= " \ python () { # auto add dependency on kernel tree if d.getVar("KERNEL_DTS_INCLUDE") != "": - d.appendVarFlag("do_compile", "depends", " virtual/kernel:do_shared_workdir") + d.appendVarFlag("do_compile", "depends", " virtual/kernel:do_configure") } do_compile() { |