mirror of
https://xff.cz/git/u-boot/
synced 2026-01-04 11:27:16 +01:00
Use PHASE_ as the symbol to select a particular XPL build. This means that SPL_TPL_ is no-longer set. Update the comment in bootstage to refer to this symbol, instead of SPL_ Signed-off-by: Simon Glass <sjg@chromium.org>
42 lines
1.5 KiB
Makefile
42 lines
1.5 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2012
|
|
# Texas Instruments Incorporated - https://www.ti.com/
|
|
# Aneesh V <aneesh@ti.com>
|
|
# Based on common/Makefile.
|
|
#
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
obj-$(CONFIG_$(PHASE_)FRAMEWORK) += spl.o
|
|
obj-$(CONFIG_$(PHASE_)BOOTROM_SUPPORT) += spl_bootrom.o
|
|
obj-$(CONFIG_$(PHASE_)LOAD_FIT) += spl_fit.o
|
|
obj-$(CONFIG_$(PHASE_)BLK_FS) += spl_blk_fs.o
|
|
obj-$(CONFIG_$(PHASE_)LEGACY_IMAGE_FORMAT) += spl_legacy.o
|
|
obj-$(CONFIG_$(PHASE_)NOR_SUPPORT) += spl_nor.o
|
|
obj-$(CONFIG_$(PHASE_)XIP_SUPPORT) += spl_xip.o
|
|
obj-$(CONFIG_$(PHASE_)YMODEM_SUPPORT) += spl_ymodem.o
|
|
ifndef CONFIG_SPL_UBI
|
|
obj-$(CONFIG_$(PHASE_)NAND_SUPPORT) += spl_nand.o
|
|
obj-$(CONFIG_$(PHASE_)ONENAND_SUPPORT) += spl_onenand.o
|
|
endif
|
|
obj-$(CONFIG_$(PHASE_)UBI) += spl_ubi.o
|
|
obj-$(CONFIG_$(PHASE_)NET) += spl_net.o
|
|
obj-$(CONFIG_$(PHASE_)MMC) += spl_mmc.o
|
|
obj-$(CONFIG_$(PHASE_)ATF) += spl_atf.o
|
|
obj-$(CONFIG_$(PHASE_)OPTEE_IMAGE) += spl_optee.o
|
|
obj-$(CONFIG_$(PHASE_)OPENSBI) += spl_opensbi.o
|
|
obj-$(CONFIG_$(PHASE_)USB_STORAGE) += spl_usb.o
|
|
obj-$(CONFIG_$(PHASE_)FS_FAT) += spl_fat.o
|
|
obj-$(CONFIG_$(PHASE_)FS_EXT4) += spl_ext.o
|
|
obj-$(CONFIG_$(PHASE_)LOAD_IMX_CONTAINER) += spl_imx_container.o
|
|
obj-$(CONFIG_$(PHASE_)SATA) += spl_sata.o
|
|
obj-$(CONFIG_$(PHASE_)NVME) += spl_nvme.o
|
|
obj-$(CONFIG_$(PHASE_)SEMIHOSTING) += spl_semihosting.o
|
|
obj-$(CONFIG_$(PHASE_)DFU) += spl_dfu.o
|
|
obj-$(CONFIG_$(PHASE_)SPI_LOAD) += spl_spi.o
|
|
obj-$(CONFIG_$(PHASE_)RAM_SUPPORT) += spl_ram.o
|
|
obj-$(CONFIG_$(PHASE_)USB_SDP_SUPPORT) += spl_sdp.o
|
|
endif
|
|
|
|
obj-$(CONFIG_$(PHASE_)UPL) += spl_upl.o
|