[U-Boot] [PATCH 08/33] WIP: x86: Drop u-boot.srec from the Makefile
Simon Glass
sjg at chromium.org
Wed Nov 12 01:17:56 CET 2014
This is not needed on x86 and creates a 4GB file due to the addressing used
on x86.
This needs to be investigated.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
Makefile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index fb72c29..c54a2f1 100644
--- a/Makefile
+++ b/Makefile
@@ -722,7 +722,10 @@ DO_STATIC_RELA =
endif
# Always append ALL so that arch config.mk's can add custom ones
-ALL-y += u-boot.srec u-boot.bin System.map binary_size_check
+ALL-y += u-boot.bin System.map binary_size_check
+ifeq ($(CONFIG_X86),)
+ALL-y += u-boot.srec
+endif
ALL-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin
ifeq ($(CONFIG_SPL_FSL_PBL),y)
--
2.1.0.rc2.206.gedb03e5
More information about the U-Boot
mailing list