summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2019-03-25 15:55:16 +0100
committerTom Rini <trini@konsulko.com>2019-05-18 12:31:58 -0400
commit3eaf6dcd9362b56e3217559401287dd8fa35b5b2 (patch)
treed6162c31ad889ebdb3000452afbdbc089bf05aab /Makefile
parent1001502545ff0125c39232cf0e7f26d9213ab55f (diff)
Makefile: Prioritize external dtb if defined
Prioritize external dtb if its passed via EXT_DTB than the dtb that was built in the tree. With this patch it appends the specified external dtb to the u-boot image. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 059978bfe6..6eb08a5724 100644
--- a/Makefile
+++ b/Makefile
@@ -1071,7 +1071,7 @@ ifneq ($(EXT_DTB),)
u-boot-fit-dtb.bin: u-boot-nodtb.bin $(EXT_DTB)
$(call if_changed,cat)
else
-u-boot-fit-dtb.bin: u-boot-nodtb.bin $(FINAL_DTB_CONTAINER)
+u-boot-fit-dtb.bin: u-boot-nodtb.bin fit-dtb.blob $(FINAL_DTB_CONTAINER)
$(call if_changed,cat)
endif