diff options
author | Enric Balletbo i Serra <eballetbo@iseebcn.com> | 2013-02-07 23:14:48 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-11 11:05:49 -0400 |
commit | 6000992e265f507a18b0dcbcf2a89179822b42c4 (patch) | |
tree | d82925cbd37b98c2bc1e7d6f6cb035391eea3476 /common/spl/Makefile | |
parent | f99613782a41dbf1b91c19684fe9556ed02ec6d1 (diff) | |
download | u-boot-imx-6000992e265f507a18b0dcbcf2a89179822b42c4.zip u-boot-imx-6000992e265f507a18b0dcbcf2a89179822b42c4.tar.gz u-boot-imx-6000992e265f507a18b0dcbcf2a89179822b42c4.tar.bz2 |
SPL: ONENAND: Support SPL to boot u-boot from OneNAND.
This patch will allow use SPL to boot an u-boot from the OneNAND.
Tested with IGEPv2 board with a OneNAND from Numonyx
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
[trini: Add <spl.h> hunk to fix warning]
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 5698a23..da2afc1 100644 --- a/common/spl/Makefile +++ b/common/spl/Makefile @@ -18,6 +18,7 @@ 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 +COBJS-$(CONFIG_SPL_ONENAND_SUPPORT) += spl_onenand.o COBJS-$(CONFIG_SPL_NET_SUPPORT) += spl_net.o endif |