board: sifive: compile stuff only related to SPL in SPL build

As (3581811dc2 "riscv: sifive/fu540: Move SPL related functions to spl.c"),
we put the SPL stuff in spl.c, we don't need to compile unleashed.c and
unmatched.c in SPL build.

Signed-off-by: Zong Li <zong.li@sifive.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
This commit is contained in:
Zong Li 2021-07-27 17:06:58 +08:00 committed by Leo Yu-Chi Liang
parent 662e300bc0
commit 87e8481885
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@
#
# Copyright (c) 2019 Western Digital Corporation or its affiliates.
obj-y += unleashed.o
ifdef CONFIG_SPL_BUILD
obj-y += spl.o
else
obj-y += unleashed.o
endif

View File

@ -2,9 +2,10 @@
#
# Copyright (c) 2020-2021 SiFive, Inc
obj-y += unmatched.o
obj-$(CONFIG_ID_EEPROM) += hifive-platform-i2c-eeprom.o
ifdef CONFIG_SPL_BUILD
obj-y += spl.o
else
obj-y += unmatched.o
endif