summaryrefslogtreecommitdiff
path: root/common/spl/Makefile
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2012-08-14 14:33:02 -0700
committerTom Rini <trini@ti.com>2012-09-27 09:50:00 -0700
commitd97b4ce8056ff01ca8f1a63a7c69fa5316d33830 (patch)
treeee6cc380a4dc2417cfe95122c377b37fa469865a /common/spl/Makefile
parent77552b0633f0856f6bb73b8e1f75334601c6a5c9 (diff)
SPL: NAND: Move arch/arm/cpu/armv7/omap-common/spl_nand.c to common/spl
We move the spl_nand_load_image function to common/spl. This will allow for easier integration of SPL-boots-Linux code on other arches. Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common/spl/Makefile')
-rw-r--r--common/spl/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Makefile b/common/spl/Makefile
index b61b438282..b9c9fd8521 100644
--- a/common/spl/Makefile
+++ b/common/spl/Makefile
@@ -16,6 +16,7 @@ LIB = $(obj)libspl.o
ifdef CONFIG_SPL_BUILD
COBJS-$(CONFIG_SPL_FRAMEWORK) += spl.o
COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o
+COBJS-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o
endif
COBJS := $(sort $(COBJS-y))