From 98f6b2d399e5fc02989390a04bd6c955b309cf7d Mon Sep 17 00:00:00 2001 From: Baruch Siach Date: Mon, 15 Oct 2012 14:25:26 +0200 Subject: nanddump: skip bad blocks when instructed to do so Signed-off-by: Baruch Siach Signed-off-by: Denys Vlasenko --- miscutils/nandwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'miscutils') diff --git a/miscutils/nandwrite.c b/miscutils/nandwrite.c index a93433457..554d36249 100644 --- a/miscutils/nandwrite.c +++ b/miscutils/nandwrite.c @@ -182,7 +182,7 @@ int nandwrite_main(int argc UNUSED_PARAM, char **argv) mtdoffset = next_good_eraseblock(fd, &meminfo, blockstart); if (IS_NANDWRITE) printf("Writing at 0x%08x\n", mtdoffset); - else if (mtdoffset > blockstart) { + else if (mtdoffset > blockstart && !(opts & OPT_b)) { int bad_len = MIN(mtdoffset, limit) - blockstart; dump_bad(&meminfo, bad_len, !(opts & OPT_o)); } -- cgit v1.2.3