diff options
author | Stefan Roese | 2012-08-27 12:50:59 +0200 |
---|---|---|
committer | Tom Rini | 2012-09-27 11:20:27 -0700 |
commit | 33d346464adb8dc206d1f9adf73bdfe2ed959502 (patch) | |
tree | 293d8f1a0fcd7c448b96aacd19261bcfbe21f006 /common/spl/Makefile | |
parent | 95a372b83685f99b6c947a6e0da55a6c474ab870 (diff) |
SPL: Add NOR flash booting support
SPL NOR flash booting support is quite simple. Only copying of the
images is needed.
On MPC5xxx we need to make sure to only use the standard memcpy()
implementation and not the MPC5xxx specific one. As the MPC5xxx
version has some complexity which is not needed for this SPL
booting.
Signed-off-by: Stefan Roese <sr@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common/spl/Makefile')
-rw-r--r-- | common/spl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Makefile b/common/spl/Makefile index b9c9fd85212..7cf01ad72d0 100644 --- a/common/spl/Makefile +++ b/common/spl/Makefile @@ -15,6 +15,7 @@ LIB = $(obj)libspl.o ifdef CONFIG_SPL_BUILD COBJS-$(CONFIG_SPL_FRAMEWORK) += spl.o +COBJS-$(CONFIG_SPL_NOR_SUPPORT) += spl_nor.o COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o COBJS-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o endif |