From: Tom Rini Date: Sun, 19 May 2019 22:09:05 +0000 (-0400) Subject: Revert "Makefile: Prioritize external dtb if defined" X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=748198cb8d32d41bc35e6f492bac9948f339bece;p=u-boot.git Revert "Makefile: Prioritize external dtb if defined" This is causing unexpected size growth in the normal case and is likely to have been mis-applied by myself. This reverts commit 3eaf6dcd9362b56e3217559401287dd8fa35b5b2. Signed-off-by: Tom Rini --- diff --git a/Makefile b/Makefile index 6eb08a5724..059978bfe6 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 fit-dtb.blob $(FINAL_DTB_CONTAINER) +u-boot-fit-dtb.bin: u-boot-nodtb.bin $(FINAL_DTB_CONTAINER) $(call if_changed,cat) endif