mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-17 22:28:17 +01:00
Use the new symbol to refer to any 'SPL' build, including TPL and VPL Signed-off-by: Simon Glass <sjg@chromium.org>
14 lines
271 B
Makefile
14 lines
271 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
obj-y += cpu.o
|
|
|
|
ifneq ($(CONFIG_SOC_MT7621),y)
|
|
obj-y += ddr_init.o
|
|
obj-y += ddr_cal.o
|
|
obj-$(CONFIG_XPL_BUILD) += spl.o
|
|
endif
|
|
|
|
obj-$(CONFIG_SOC_MT7620) += mt7620/
|
|
obj-$(CONFIG_SOC_MT7621) += mt7621/
|
|
obj-$(CONFIG_SOC_MT7628) += mt7628/
|