mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
gypsy: Add upstream status information for gypsy's patch alsa-utils: fix upstream status typo pulseaudio: add upstream status for pulseaudio-0.9.15's patches hostap: add upstream status for hostap's patch glibc: add upstream status for glibc's patch glib-2.0: add upstream status for glib-2.0's patch mtd-utils: add upstream status for mtd-utils patches add upstream status for opkg's patches mark add_vercmp.patch as inappropriate since the added function is not used. (From OE-Core rev: b0052e9467608cdc2e3b85f5b718e6b9c03d44ca) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
733 B
Diff
29 lines
733 B
Diff
Upstream-Status: Pending
|
|
|
|
---
|
|
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 */
|