~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/common/spl/Makefile

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# (C) Copyright 2012
 
3
# Texas Instruments Incorporated - http://www.ti.com/
 
4
# Aneesh V <aneesh@ti.com>
 
5
#
 
6
# SPDX-License-Identifier:      GPL-2.0+
 
7
#
 
8
# Based on common/Makefile.
 
9
#
 
10
 
 
11
ifdef CONFIG_SPL_BUILD
 
12
obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
 
13
obj-$(CONFIG_SPL_NOR_SUPPORT) += spl_nor.o
 
14
obj-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o
 
15
obj-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o
 
16
obj-$(CONFIG_SPL_ONENAND_SUPPORT) += spl_onenand.o
 
17
obj-$(CONFIG_SPL_NET_SUPPORT) += spl_net.o
 
18
obj-$(CONFIG_SPL_MMC_SUPPORT) += spl_mmc.o
 
19
obj-$(CONFIG_SPL_USB_SUPPORT) += spl_usb.o
 
20
obj-$(CONFIG_SPL_FAT_SUPPORT) += spl_fat.o
 
21
obj-$(CONFIG_SPL_SATA_SUPPORT) += spl_sata.o
 
22
endif