Makefile: u-boot.itb: call "mkfitimage" when kernel dtb enabled

This was a careless mistake.

fixes: 510e4046a6
(Makefile: u-boot.itb: use dt-spl.dtb if using kernel dtb)

Change-Id: Ifc8ad908356db55007ddd8e125543a6501cbe5da
Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
This commit is contained in:
Joseph Chen 2019-06-13 11:21:23 +08:00 committed by Jianhong Chen
parent 13c5d8ec8c
commit d399273895
1 changed files with 1 additions and 1 deletions

View File

@ -1041,8 +1041,8 @@ ifeq ($(CONFIG_USING_KERNEL_DTB),y)
u-boot.itb: u-boot-nodtb.bin dts/dt-spl.dtb $(U_BOOT_ITS) FORCE
else
u-boot.itb: u-boot-nodtb.bin dts/dt.dtb $(U_BOOT_ITS) FORCE
$(call if_changed,mkfitimage)
endif
$(call if_changed,mkfitimage)
u-boot-spl.kwb: u-boot.img spl/u-boot-spl.bin FORCE
$(call if_changed,mkimage)