
12 Nov
2014
12 Nov
'14
1:17 a.m.
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@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