diff options
| author | Tom Rini <trini@konsulko.com> | 2019-11-03 07:41:29 -0500 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2019-11-03 07:41:29 -0500 |
| commit | a1986c80c39fcbeaa132197b93971f410defe4f0 (patch) | |
| tree | 8794b7d6bed8385811bac310d0ca35e6049b7e10 /Makefile | |
| parent | 18afd916005ca2ea42503b565d68da927b14600c (diff) | |
| parent | 73c6cd6c0bdb3af76d573f619bbcc141758bb16b (diff) | |
| download | u-boot-WIP/03Nov2019.tar.gz | |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-x86WIP/03Nov2019
- Add support for Intel FSP-S and FSP-T in binman
- Correct priority selection for image loaders for SPL
- Add a size check for TPL
- Various small SPL/TPL bug fixes and changes
- SPI: Add support for memory-mapped flash
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -806,6 +806,12 @@ else SPL_SIZE_CHECK = endif +ifneq ($(CONFIG_TPL_SIZE_LIMIT),0) +TPL_SIZE_CHECK = @$(call size_check,$@,$(CONFIG_TPL_SIZE_LIMIT)) +else +TPL_SIZE_CHECK = +endif + # Statically apply RELA-style relocations (currently arm64 only) # This is useful for arm64 where static relocation needs to be performed on # the raw binary, but certain simulators only accept an ELF file (but don't @@ -1806,6 +1812,7 @@ spl/boot.bin: spl/u-boot-spl tpl/u-boot-tpl.bin: tools prepare \ $(if $(CONFIG_OF_SEPARATE)$(CONFIG_OF_EMBED)$(CONFIG_SPL_OF_PLATDATA),dts/dt.dtb) $(Q)$(MAKE) obj=tpl -f $(srctree)/scripts/Makefile.spl all + $(TPL_SIZE_CHECK) TAG_SUBDIRS := $(patsubst %,$(srctree)/%,$(u-boot-dirs) include) |
