mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-07-03 04:42:40 +00:00
spl: Makefile: Define SPL_ earlier
This Makefile variable can be used in the architecture's main Makefile but at present it is not set up until later. Set it just before this Makefile is included. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
a704490034
commit
d688bd728f
1 changed files with 6 additions and 0 deletions
|
@ -35,6 +35,12 @@ else
|
|||
SPL_BIN := u-boot-spl
|
||||
endif
|
||||
|
||||
ifdef CONFIG_SPL_BUILD
|
||||
SPL_ := SPL_
|
||||
else
|
||||
SPL_ :=
|
||||
endif
|
||||
|
||||
include $(srctree)/config.mk
|
||||
include $(srctree)/arch/$(ARCH)/Makefile
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue