commit | 389e6620e2271096df3316917528003627db4021 | [log] [tgz] |
---|---|---|
author | Schlaegl Manfred jun <manfred.schlaegl@gmx.at> | Tue Jan 20 16:57:55 2009 +0100 |
committer | Scott Wood <scottwood@freescale.com> | Fri Jan 23 10:32:52 2009 -0600 |
tree | 3df2ad95074455d1b0ccb1ff7f7459527124354f | |
parent | 6c869637fef31e66380f0ea1d49690a2e26ec0d7 [diff] |
nand read.jffs2 (nand_legacy) in common/cmd_nand.c Error with CONFIG_NAND_LEGACY in common/cmd_nand.c: With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is tested before ".jffs2s" and only the first two characters are compared. Correction: Test for ".jffs2s" first and compare the first 7 characters. Signed-off-by: Scott Wood <scottwood@freescale.com>