All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Makefile: Fix generation of flash.bin u-boot.itb with binman
@ 2021-02-25 20:50 Marek Vasut
  2021-04-24 12:56 ` Marek Vasut
  2021-05-02 11:43 ` stefano.babic at babic.homelinux.org
  0 siblings, 2 replies; 8+ messages in thread
From: Marek Vasut @ 2021-02-25 20:50 UTC (permalink / raw)
  To: u-boot

In case binman is enabled, the u-boot.itb is generated using this tool
and there is no direct u-boot.itb target, but instead the binman tool
must be invoked. Add support for this case.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
---
 Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/Makefile b/Makefile
index 079881b62ab..a0456dd5859 100644
--- a/Makefile
+++ b/Makefile
@@ -1542,10 +1542,16 @@ u-boot.cnt: u-boot.bin FORCE
 flash.bin: spl/u-boot-spl.bin u-boot.cnt FORCE
 	$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
 else
+ifeq ($(CONFIG_BINMAN),y)
+flash.bin: spl/u-boot-spl.bin $(INPUTS-y) FORCE
+	$(call if_changed,binman)
+	$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
+else
 flash.bin: spl/u-boot-spl.bin u-boot.itb FORCE
 	$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
 endif
 endif
+endif
 
 u-boot-with-spl.imx u-boot-with-nand-spl.imx: SPL u-boot.bin FORCE
 	$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
-- 
2.30.0

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-05-02 11:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-25 20:50 [PATCH] Makefile: Fix generation of flash.bin u-boot.itb with binman Marek Vasut
2021-04-24 12:56 ` Marek Vasut
2021-04-29 23:11   ` Bin Meng
2021-04-30 18:13     ` Simon Glass
2021-04-30 18:47       ` Marek Vasut
2021-04-30 18:52         ` Simon Glass
2021-05-02  9:57           ` Stefano Babic
2021-05-02 11:43 ` stefano.babic at babic.homelinux.org

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.