diff options
author | Simon Schwarz <simonschwarzcor@googlemail.com> | 2011-09-14 15:30:16 -0400 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-30 22:00:54 +0200 |
commit | 12c2f1ee3c3e26950b39b779db4b6636759778ff (patch) | |
tree | 0d5ff19233dad1274a905c3ec5fd7bd662e3353e /spl | |
parent | bb085b87e587b5ea98519d95c8b24f603d91360a (diff) |
spl: add NAND Library to new SPL
Adds NAND library to SPL.
Signed-off-by: Simon Schwarz <simonschwarzcor@gmail.com>
Acked-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'spl')
-rw-r--r-- | spl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spl/Makefile b/spl/Makefile index 95ecce1563f..1e912f0de23 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -46,6 +46,7 @@ LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o +LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o ifeq ($(SOC),omap3) LIBS-y += $(CPUDIR)/omap-common/libomap-common.o |