2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2012-08-13 19:03:19 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2012
|
|
|
|
# Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
# Aneesh V <aneesh@ti.com>
|
|
|
|
# Based on common/Makefile.
|
|
|
|
#
|
|
|
|
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
2019-07-16 08:12:02 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)FRAMEWORK) += spl.o
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit.o
|
2020-04-21 07:28:41 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)LEGACY_IMAGE_SUPPORT) += spl_legacy.o
|
2017-08-17 08:06:59 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)NOR_SUPPORT) += spl_nor.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)XIP_SUPPORT) += spl_xip.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)YMODEM_SUPPORT) += spl_ymodem.o
|
2016-07-12 18:28:13 +00:00
|
|
|
ifndef CONFIG_SPL_UBI
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)NAND_SUPPORT) += spl_nand.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)ONENAND_SUPPORT) += spl_onenand.o
|
2016-07-12 18:28:13 +00:00
|
|
|
endif
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)UBI) += spl_ubi.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)NET_SUPPORT) += spl_net.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)MMC_SUPPORT) += spl_mmc.o
|
2017-09-13 19:29:36 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)ATF) += spl_atf.o
|
2018-08-23 09:17:59 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)OPTEE) += spl_optee.o
|
2019-08-21 19:14:44 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)OPENSBI) += spl_opensbi.o
|
2019-02-01 16:40:07 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)USB_STORAGE) += spl_usb.o
|
2019-01-23 06:20:03 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)FS_FAT) += spl_fat.o
|
2019-01-23 06:20:05 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)FS_EXT4) += spl_ext.o
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)SATA_SUPPORT) += spl_sata.o
|
2019-01-17 19:43:02 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)DFU) += spl_dfu.o
|
2017-07-04 09:16:47 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)SPI_LOAD) += spl_spi.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)RAM_SUPPORT) += spl_ram.o
|
2017-08-16 18:00:54 +00:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)USB_SDP_SUPPORT) += spl_sdp.o
|
2012-08-13 19:03:19 +00:00
|
|
|
endif
|