1 # SPDX-License-Identifier: GPL-2.0+ 2 # 3 # (C) Copyright 2012 4 # Texas Instruments Incorporated - http://www.ti.com/ 5 # Aneesh V <aneesh (at] ti.com> 6 # Based on common/Makefile. 7 # 8 9 ifdef CONFIG_SPL_BUILD 10 obj-$(CONFIG_SPL_FRAMEWORK) += spl.o 11 obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o 12 obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit.o 13 obj-$(CONFIG_$(SPL_TPL_)NOR_SUPPORT) += spl_nor.o 14 obj-$(CONFIG_$(SPL_TPL_)XIP_SUPPORT) += spl_xip.o 15 obj-$(CONFIG_$(SPL_TPL_)YMODEM_SUPPORT) += spl_ymodem.o 16 ifndef CONFIG_SPL_UBI 17 obj-$(CONFIG_$(SPL_TPL_)NAND_SUPPORT) += spl_nand.o 18 obj-$(CONFIG_$(SPL_TPL_)ONENAND_SUPPORT) += spl_onenand.o 19 endif 20 obj-$(CONFIG_$(SPL_TPL_)UBI) += spl_ubi.o 21 obj-$(CONFIG_$(SPL_TPL_)NET_SUPPORT) += spl_net.o 22 obj-$(CONFIG_$(SPL_TPL_)MMC_SUPPORT) += spl_mmc.o 23 obj-$(CONFIG_$(SPL_TPL_)ATF) += spl_atf.o 24 obj-$(CONFIG_$(SPL_TPL_)USB_SUPPORT) += spl_usb.o 25 obj-$(CONFIG_$(SPL_TPL_)FAT_SUPPORT) += spl_fat.o 26 obj-$(CONFIG_$(SPL_TPL_)EXT_SUPPORT) += spl_ext.o 27 obj-$(CONFIG_$(SPL_TPL_)SATA_SUPPORT) += spl_sata.o 28 obj-$(CONFIG_$(SPL_TPL_)DFU_SUPPORT) += spl_dfu.o 29 obj-$(CONFIG_$(SPL_TPL_)SPI_LOAD) += spl_spi.o 30 obj-$(CONFIG_$(SPL_TPL_)RAM_SUPPORT) += spl_ram.o 31 obj-$(CONFIG_$(SPL_TPL_)USB_SDP_SUPPORT) += spl_sdp.o 32 endif 33