diff options
author | Fred Fan <r01011@freescale.com> | 2009-02-23 13:57:38 +0800 |
---|---|---|
committer | Fred Fan <r01011@freescale.com> | 2009-09-09 17:27:24 +0800 |
commit | 103edf8bf3216697f38dbf7b42be23ab3755cd72 (patch) | |
tree | 7855d89e7525571c0a22a8279ff75c90e581e0d2 /drivers/mtd | |
parent | 4a9ee8a22327ddbd4f2c296a834fcc90fc2d1d14 (diff) | |
download | u-boot-imx-103edf8bf3216697f38dbf7b42be23ab3755cd72.zip u-boot-imx-103edf8bf3216697f38dbf7b42be23ab3755cd72.tar.gz u-boot-imx-103edf8bf3216697f38dbf7b42be23ab3755cd72.tar.bz2 |
ENGR00102788 Remove CONFIG_NAND_BOOT on i.MX31 3stack
1. Change NAND driver Makefile to bulild individual nand driver on i.MX31
and i.MX35.
2. Remove CONFIG_NAND_BOOT to common boot code which supports boot from nand
and nor.
Signed-off-by: Fred Fan <r01011@freescale.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/Makefile b/drivers/mtd/nand/Makefile index d2f9435..2adf485 100644 --- a/drivers/mtd/nand/Makefile +++ b/drivers/mtd/nand/Makefile @@ -47,7 +47,7 @@ COBJS-$(CONFIG_NAND_S3C64XX) += s3c64xx.o COBJS-$(CONFIG_NAND_OMAP_GPMC) += omap_gpmc.o COBJS-$(CONFIG_NAND_PLAT) += nand_plat.o COBJS-$(CONFIG_MX31_NAND) += mx31_nand.o -COBJS-y += mxc_nand.o +COBJS-$(CONFIG_MX35) += mxc_nand.o endif COBJS := $(COBJS-y) |