From: Maxime Ripard Date: Tue, 16 Jan 2018 08:44:23 +0000 (+0100) Subject: Makefile: Add size check to the u-boot.itb make target X-Git-Tag: v2018.03-rc1~94^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e89f5591f40a1c46f4a1016eddd1e215175b992f;p=platform%2Fkernel%2Fu-boot.git Makefile: Add size check to the u-boot.itb make target The make macro to check if the binary exceeds the board size limit is not called. Make sure that is the case. Signed-off-by: Maxime Ripard Reviewed-by: Jagan Teki --- diff --git a/Makefile b/Makefile index 4981a2e..7195219 100644 --- a/Makefile +++ b/Makefile @@ -1053,6 +1053,7 @@ u-boot-dtb.img u-boot.img u-boot.kwb u-boot.pbl u-boot-ivt.img: \ u-boot.itb: u-boot-nodtb.bin dts/dt.dtb $(U_BOOT_ITS) FORCE $(call if_changed,mkfitimage) + $(BOARD_SIZE_CHECK) u-boot-spl.kwb: u-boot.img spl/u-boot-spl.bin FORCE $(call if_changed,mkimage)