uboot-nand-markbad-reallybad.patch

来自「Uboot常用的移植patches, 方便定制移植到s3c2440」· PATCH 代码 · 共 21 行

PATCH
21
字号
This patch makes sure that the 'nand markbad' command does not only mark a block'bad' in the bad-block table, but _also_ marks it bad in the OOB area.we need this to preserve the bad block status when re-creating the bad block tableat some later point.Signed-off-by: Harald Welte <laforge@openmoko.org>Index: u-boot/drivers/mtd/nand/nand_base.c===================================================================--- u-boot.orig/drivers/mtd/nand/nand_base.c	2007-03-01 12:47:31.000000000 +0100+++ u-boot/drivers/mtd/nand/nand_base.c	2007-03-01 12:48:08.000000000 +0100@@ -481,7 +481,7 @@  	/* Do we have a flash based bad block table ? */ 	if (this->options & NAND_USE_FLASH_BBT)-		return nand_update_bbt (mtd, ofs);+		nand_update_bbt (mtd, ofs);  	/* We write two bytes, so we dont have to mess with 16 bit access */ 	ofs += mtd->oobsize + (this->badblockpos & ~0x01);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?