[U-Boot] [PATCH] add explicit bbt creation to commandline
Scott Wood
scottwood at freescale.com
Tue Feb 16 19:35:14 CET 2010
On Fri, Feb 12, 2010 at 06:14:51PM -0800, Steven Zedeck wrote:
> Its in board/atmel/at91sam9rlek/nand.c
>
> It doesn't do much but set up the various GPIO connections. Here's the
> function:
>
> int board_nand_init(struct nand_chip *nand)
> {
> nand->ecc.mode = NAND_ECC_SOFT;
> #ifdef CFG_NAND_DBW_16
> nand->options = NAND_BUSWIDTH_16;
> #endif
> nand->cmd_ctrl = at91sam9rlek_nand_hwcontrol;
> nand->dev_ready = at91sam9rlek_nand_ready;
> nand->chip_delay = 20;
>
> return 0;
> }
Add "nand->options |= NAND_USE_FLASH_BBT;".
-Scott
More information about the U-Boot
mailing list