aboutsummaryrefslogtreecommitdiffstats
path: root/packages/opie-unikeyboard
AgeCommit message (Expand)Author
2006-08-05packages: sed -i s/^"include "/"require "/ */*.bb GNU sed rocks!Holger Freyther
2006-07-02Opie: Rename Opie 1.2.1 to 1.2.2, Remove PRsHolger Freyther
2006-01-12Correct Opie PV format to preserve upgradability of packages but note where c...Richard Purdie
2006-01-07Convert CVSDATE -> SRCDATE. Also standardise cvs and svn PVs to x.x.x+cvsYYYY...Richard Purdie
2005-09-12Opie 1.2.1:Holger Freyther
2005-06-30import clean BK tree at cset 1.3670Koen Kooi
2005-03-26Merge nslu2-linux@nslu2-linux.bkbits.net:openembeddedg2@giantshoulder.com
2005-02-03upgrade PV for opie_cvs packagesMichael Lauer
2005-02-02compute TAG line in opie.bbclass instead of in (all) opie filesMichael Lauer
2005-02-02Merge bk://oe-devel@oe-devel.bkbits.net/openembeddedMichael Lauer
2004-12-27Merge bk://oe-devel.bkbits.net/openembeddednslu2-linux.adm@bkbits.net
2004-12-26Merge bk://oe-devel.bkbits.net/openembeddednslu2-linux.adm@bkbits.net
2004-12-09Merge oe-devel@oe-devel.bkbits.net:openembeddedChris Larson
on> OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/packages/mtd/mtd-utils/fix-ignoreerrors-git.patch
blob: bec60a18c17a5f3291cd9353db841f9429152053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
 nanddump.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: git/nanddump.c
===================================================================
--- git.orig/nanddump.c	2007-01-23 15:42:34.000000000 +0000
+++ git/nanddump.c	2007-01-23 15:47:57.000000000 +0000
@@ -281,7 +281,7 @@ int main(int argc, char **argv)
 			}
 		}
 
-		if (badblock) {
+		if (badblock && !ignoreerrors) {
 			if (omitbad)
 				continue;
 			memset (readbuf, 0xff, bs);
@@ -335,7 +335,7 @@ int main(int argc, char **argv)
 		if (omitoob)
 			continue;
 
-		if (badblock) {
+		if (badblock && !ignoreerrors) {
 			memset (readbuf, 0xff, meminfo.oobsize);
 		} else {
 			/* Read OOB data and exit on failure */