mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 00:17:23 +00:00
common: add spl/u-boot-spl.hex target
Some devices, namely Intel's stratix10 SoC, require u-boot-spl in a hex format. This patch adds spl/u-boot-spl.hex as a possible target. Signed-off-by: Dalon Westergreen <dwesterg@gmail.com>
This commit is contained in:
parent
9ea354444d
commit
2ff60af605
1 changed files with 5 additions and 0 deletions
5
Makefile
5
Makefile
|
@ -985,6 +985,11 @@ spl/u-boot-spl.srec: spl/u-boot-spl FORCE
|
||||||
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)
|
||||||
|
|
||||||
|
OBJCOPYFLAGS_u-boot-spl.hex = $(OBJCOPYFLAGS_u-boot.hex)
|
||||||
|
|
||||||
|
spl/u-boot-spl.hex: spl/u-boot-spl FORCE
|
||||||
|
$(call if_changed,objcopy)
|
||||||
|
|
||||||
binary_size_check: u-boot-nodtb.bin FORCE
|
binary_size_check: u-boot-nodtb.bin FORCE
|
||||||
@file_size=$(shell wc -c u-boot-nodtb.bin | awk '{print $$1}') ; \
|
@file_size=$(shell wc -c u-boot-nodtb.bin | awk '{print $$1}') ; \
|
||||||
map_size=$(shell cat u-boot.map | \
|
map_size=$(shell cat u-boot.map | \
|
||||||
|
|
Loading…
Reference in a new issue