diff options
author | Christian Hitz <christian.hitz@aizo.com> | 2011-10-12 09:31:59 +0200 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2012-01-26 16:09:02 -0600 |
commit | 4c6de8560cb42a6b6c2d565d41b6801e4b02d4b3 (patch) | |
tree | 1244963352384b2b50a920020bab7370918c303e /lib/Makefile | |
parent | 4d2aee2b3681234691b102194cc2f14857272828 (diff) | |
download | u-boot-imx-4c6de8560cb42a6b6c2d565d41b6801e4b02d4b3.zip u-boot-imx-4c6de8560cb42a6b6c2d565d41b6801e4b02d4b3.tar.gz u-boot-imx-4c6de8560cb42a6b6c2d565d41b6801e4b02d4b3.tar.bz2 |
nand: Merge BCH code from Linux nand driver
[backport from linux commit 02f8c6aee8df3cdc935e9bdd4f2d020306035dbe]
This patch merges the BCH ECC algorithm from the 3.0 Linux kernel.
This enables U-Boot to support modern NAND flash chips that
require more than 1-bit of ECC in software.
Signed-off-by: Christian Hitz <christian.hitz@aizo.com>
Cc: Scott Wood <scottwood@freescale.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 35ba7ff..e6e6ec6 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -27,6 +27,7 @@ LIB = $(obj)libgeneric.o ifndef CONFIG_SPL_BUILD COBJS-$(CONFIG_ADDR_MAP) += addr_map.o +COBJS-$(CONFIG_BCH) += bch.o COBJS-$(CONFIG_BZIP2) += bzlib.o COBJS-$(CONFIG_BZIP2) += bzlib_crctable.o COBJS-$(CONFIG_BZIP2) += bzlib_decompress.o |