diff options
author | Heiko Schocher <hs@denx.de> | 2011-11-01 20:00:28 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-11-03 22:56:24 +0100 |
commit | 18e8ff18fa3cbd302866bdfd4d510e7cb465c568 (patch) | |
tree | 3ea9ff3276365dfe288e26de592daf787f4fa89a | |
parent | 882ecfa390516791d5e04db2d7c5ed602441755a (diff) | |
download | talos-obmc-uboot-18e8ff18fa3cbd302866bdfd4d510e7cb465c568.tar.gz talos-obmc-uboot-18e8ff18fa3cbd302866bdfd4d510e7cb465c568.zip |
spl: add option for adding post memory test to the SPL framework
Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Cc: Sergei Shtylyov <sshtylyov@mvista.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
-rw-r--r-- | doc/README.SPL | 1 | ||||
-rw-r--r-- | spl/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/README.SPL b/doc/README.SPL index b4500fc42b..b460e8487e 100644 --- a/doc/README.SPL +++ b/doc/README.SPL @@ -63,3 +63,4 @@ CONFIG_SPL_LIBGENERIC_SUPPORT (lib/libgeneric.o) CONFIG_SPL_POWER_SUPPORT (drivers/power/libpower.o) CONFIG_SPL_NAND_SUPPORT (drivers/mtd/nand/libnand.o) CONFIG_SPL_DMA_SUPPORT (drivers/dma/libdma.o) +CONFIG_SPL_POST_MEM_SUPPORT (post/drivers/memory.o) diff --git a/spl/Makefile b/spl/Makefile index d4d754de6c..c8317fa702 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -55,6 +55,7 @@ LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/libdma.o +LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/memory.o ifeq ($(SOC),omap3) LIBS-y += $(CPUDIR)/omap-common/libomap-common.o |