[U-Boot] [RFC PATCH] arm, Makefile: set SPL_PAYLOAD according to the SoC architecture
Raghav Dogra
raghav.dogra at nxp.com
Fri Sep 16 21:14:17 CEST 2016
SPL_PAYLOAD should be .img in case of ARM architecture and .bin in
case of other architectures. This patch takes care of the same by choosing
the SPL_PAYLOAD as u-boot.img for ARM architecture and u-boot.bin for others.
Signed-off-by: Raghav Dogra <raghav.dogra at nxp.com>
---
Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/Makefile b/Makefile
index c66bd2f..4618548 100644
--- a/Makefile
+++ b/Makefile
@@ -941,6 +941,9 @@ u-boot.cfg: include/config.h FORCE
ifdef CONFIG_TPL
SPL_PAYLOAD := tpl/u-boot-with-tpl.bin
else
+ifeq ($(ARCH),arm)
+SPL_PAYLOAD := u-boot.img
+else
SPL_PAYLOAD := u-boot.bin
endif
--
1.9.1
More information about the U-Boot
mailing list