diff options
author | Marek Vasut | 2018-02-26 20:14:02 +0100 |
---|---|---|
committer | Marek Vasut | 2018-02-27 21:05:35 +0100 |
commit | 3ee58ea425fc6c8ff8b38cab65fef31ec61d5db3 (patch) | |
tree | 2139c771d9da16f418a193efdd13db91052b6188 /Makefile | |
parent | b691c9a66817c9d4bed30450f1c491cc2f335224 (diff) |
Makefile: add u-boot-spl.srec target
The u-boot-spl.srec is needed for some platforms, add target to generate this file.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Cc: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -931,6 +931,11 @@ OBJCOPYFLAGS_u-boot-elf.srec := $(OBJCOPYFLAGS_u-boot.srec) u-boot-elf.srec: u-boot.elf FORCE $(call if_changed,objcopy) +OBJCOPYFLAGS_u-boot-spl.srec = $(OBJCOPYFLAGS_u-boot.srec) + +spl/u-boot-spl.srec: spl/u-boot-spl FORCE + $(call if_changed,objcopy) + OBJCOPYFLAGS_u-boot-nodtb.bin := -O binary \ $(if $(CONFIG_X86_16BIT_INIT),-R .start16 -R .resetvec) |