]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/spl/Makefile
Merge git://git.denx.de/u-boot-spi
[people/ms/u-boot.git] / common / spl / Makefile
CommitLineData
47f7bcae
TR
1#
2# (C) Copyright 2012
3# Texas Instruments Incorporated - http://www.ti.com/
4# Aneesh V <aneesh@ti.com>
5#
1a459660 6# SPDX-License-Identifier: GPL-2.0+
47f7bcae
TR
7#
8# Based on common/Makefile.
9#
10
47f7bcae 11ifdef CONFIG_SPL_BUILD
0ccf54c6 12obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
f94e643e
PT
13obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o
14obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit.o
b5c4d81b
PT
15obj-$(CONFIG_$(SPL_TPL_)NOR_SUPPORT) += spl_nor.o
16obj-$(CONFIG_$(SPL_TPL_)XIP_SUPPORT) += spl_xip.o
17obj-$(CONFIG_$(SPL_TPL_)YMODEM_SUPPORT) += spl_ymodem.o
bf55cd4f 18ifndef CONFIG_SPL_UBI
f94e643e
PT
19obj-$(CONFIG_$(SPL_TPL_)NAND_SUPPORT) += spl_nand.o
20obj-$(CONFIG_$(SPL_TPL_)ONENAND_SUPPORT) += spl_onenand.o
bf55cd4f 21endif
f94e643e
PT
22obj-$(CONFIG_$(SPL_TPL_)UBI) += spl_ubi.o
23obj-$(CONFIG_$(SPL_TPL_)NET_SUPPORT) += spl_net.o
24obj-$(CONFIG_$(SPL_TPL_)MMC_SUPPORT) += spl_mmc.o
aa122f6b 25obj-$(CONFIG_$(SPL_TPL_)ATF) += spl_atf.o
f94e643e
PT
26obj-$(CONFIG_$(SPL_TPL_)USB_SUPPORT) += spl_usb.o
27obj-$(CONFIG_$(SPL_TPL_)FAT_SUPPORT) += spl_fat.o
28obj-$(CONFIG_$(SPL_TPL_)EXT_SUPPORT) += spl_ext.o
29obj-$(CONFIG_$(SPL_TPL_)SATA_SUPPORT) += spl_sata.o
30obj-$(CONFIG_$(SPL_TPL_)DFU_SUPPORT) += spl_dfu.o
31obj-$(CONFIG_$(SPL_TPL_)SPI_LOAD) += spl_spi.o
32obj-$(CONFIG_$(SPL_TPL_)RAM_SUPPORT) += spl_ram.o
a3774c1c 33obj-$(CONFIG_$(SPL_TPL_)USB_SDP_SUPPORT) += spl_sdp.o
47f7bcae 34endif