Skip to content
Snippets Groups Projects
Commit 3ee58ea4 authored by Marek Vasut's avatar Marek Vasut Committed by Marek Vasut
Browse files

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: default avatarMarek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Cc: Tom Rini <trini@konsulko.com>
parent b691c9a6
No related branches found
No related tags found
No related merge requests found
...@@ -931,6 +931,11 @@ OBJCOPYFLAGS_u-boot-elf.srec := $(OBJCOPYFLAGS_u-boot.srec) ...@@ -931,6 +931,11 @@ OBJCOPYFLAGS_u-boot-elf.srec := $(OBJCOPYFLAGS_u-boot.srec)
u-boot-elf.srec: u-boot.elf FORCE u-boot-elf.srec: u-boot.elf FORCE
$(call if_changed,objcopy) $(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 \ OBJCOPYFLAGS_u-boot-nodtb.bin := -O binary \
$(if $(CONFIG_X86_16BIT_INIT),-R .start16 -R .resetvec) $(if $(CONFIG_X86_16BIT_INIT),-R .start16 -R .resetvec)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment