mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 14:36:03 +01:00
Use the new symbol to refer to any 'SPL' build, including TPL and VPL Signed-off-by: Simon Glass <sjg@chromium.org>
18 lines
343 B
Makefile
18 lines
343 B
Makefile
#
|
|
# Copyright 2022 NXP
|
|
# Copyright 2023 Variscite Ltd.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += imx93_var_som.o
|
|
obj-$(CONFIG_TARGET_IMX93_VAR_SOM) += ../common/imx9_eeprom.o
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
obj-y += spl.o
|
|
obj-$(CONFIG_TARGET_IMX93_VAR_SOM) += lpddr4x_timing.o
|
|
else
|
|
obj-y += ../common/eth.o
|
|
obj-y += ../common/mmc.o
|
|
endif
|