diff options
author | Simon Glass | 2019-04-25 21:58:53 -0600 |
---|---|---|
committer | Bin Meng | 2019-05-08 13:02:13 +0800 |
commit | d68574a72da5376784cbf3a553d82c6acfcd6824 (patch) | |
tree | 05205126590e5dcebdbe5b2e31634d06b052b7f2 /Makefile | |
parent | 051c31b7a49933f25bcf2ffe8c7764642fcff0d4 (diff) |
x86: Allow 16-bit init to be in TPL
At present we support having 16-bit init be in SPL or U-Boot proper, but
not TPL. Add support for this so that TPL can boot.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1380,6 +1380,7 @@ cmd_ldr = $(LD) $(LDFLAGS_$(@F)) \ u-boot.rom: u-boot-x86-16bit.bin u-boot.bin \ $(if $(CONFIG_SPL_X86_16BIT_INIT),spl/u-boot-spl.bin) \ + $(if $(CONFIG_TPL_X86_16BIT_INIT),tpl/u-boot-tpl.bin) \ $(if $(CONFIG_HAVE_REFCODE),refcode.bin) FORCE $(call if_changed,binman) |