]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
Makefile: Prioritize external dtb if defined
authorMichal Simek <michal.simek@xilinx.com>
Sat, 23 Mar 2019 05:43:00 +0000 (11:13 +0530)
committerMichal Simek <michal.simek@xilinx.com>
Mon, 25 Mar 2019 14:39:06 +0000 (15:39 +0100)
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>
Makefile

index 6aa08964fff47274f6d4b54343e5071a78eaffa4..ab0c42c133bf06e76d07159165a6ddb396f5d065 100755 (executable)
--- a/Makefile
+++ b/Makefile
@@ -1020,8 +1020,13 @@ MKIMAGEFLAGS_fit-dtb.blob = -f auto -A $(ARCH) -T firmware -C none -O u-boot \
        -a 0 -e 0 -E \
        $(patsubst %,-b arch/$(ARCH)/dts/%.dtb,$(subst ",,$(CONFIG_OF_LIST))) -d /dev/null
 
+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
        $(call if_changed,cat)
+endif
 
 u-boot.bin: u-boot-fit-dtb.bin FORCE
        $(call if_changed,copy)