2012-08-13 19:03:19 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2012
|
|
|
|
# Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
# Aneesh V <aneesh@ti.com>
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2012-08-13 19:03:19 +00:00
|
|
|
#
|
|
|
|
# Based on common/Makefile.
|
|
|
|
#
|
|
|
|
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
2013-10-17 08:34:59 +00:00
|
|
|
obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
|
|
|
|
obj-$(CONFIG_SPL_NOR_SUPPORT) += spl_nor.o
|
|
|
|
obj-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o
|
|
|
|
obj-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o
|
|
|
|
obj-$(CONFIG_SPL_ONENAND_SUPPORT) += spl_onenand.o
|
|
|
|
obj-$(CONFIG_SPL_NET_SUPPORT) += spl_net.o
|
|
|
|
obj-$(CONFIG_SPL_MMC_SUPPORT) += spl_mmc.o
|
2014-01-16 17:23:30 +00:00
|
|
|
obj-$(CONFIG_SPL_USB_SUPPORT) += spl_usb.o
|
2014-01-16 17:23:29 +00:00
|
|
|
obj-$(CONFIG_SPL_FAT_SUPPORT) += spl_fat.o
|
2014-02-03 12:59:01 +00:00
|
|
|
obj-$(CONFIG_SPL_SATA_SUPPORT) += spl_sata.o
|
2012-08-13 19:03:19 +00:00
|
|
|
endif
|