mtd-utils: Upgrade to version 1.4.1

Remove add-oobsize-64-and-writesize-4096-as-normal-nand.patch
since the original code logic no longer exists.

Do not include fix-ignoreerrors-git.patch since variable
"ignoreerrors" is not defined in current code.

Fix recipe metadata.

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
This commit is contained in:
Dongxiao Xu
2010-11-18 20:02:31 +08:00
committed by Richard Purdie
parent a2ede09151
commit 9cc3ea6579
3 changed files with 9 additions and 28 deletions

View File

@@ -1,24 +0,0 @@
Index: git/nanddump.c
===================================================================
--- git.orig/nanddump.c 2010-04-29 10:24:15.000000000 +0200
+++ git/nanddump.c 2010-04-29 10:28:45.000000000 +0200
@@ -210,6 +210,7 @@
/* Make sure device page sizes are valid */
if (!(meminfo.oobsize == 128 && meminfo.writesize == 4096) &&
+ !(meminfo.oobsize == 64 && meminfo.writesize == 4096) &&
!(meminfo.oobsize == 64 && meminfo.writesize == 2048) &&
!(meminfo.oobsize == 32 && meminfo.writesize == 1024) &&
!(meminfo.oobsize == 16 && meminfo.writesize == 512) &&
Index: git/nandwrite.c
===================================================================
--- git.orig/nandwrite.c 2010-04-29 09:59:30.000000000 +0200
+++ git/nandwrite.c 2010-04-29 10:27:51.000000000 +0200
@@ -294,6 +294,7 @@
if (!(meminfo.oobsize == 16 && meminfo.writesize == 512) &&
!(meminfo.oobsize == 8 && meminfo.writesize == 256) &&
!(meminfo.oobsize == 64 && meminfo.writesize == 2048) &&
+ !(meminfo.oobsize == 64 && meminfo.writesize == 4096) &&
!(meminfo.oobsize == 128 && meminfo.writesize == 4096)) {
fprintf(stderr, "Unknown flash (not normal NAND)\n");
close(fd);

View File

@@ -2,15 +2,17 @@ DESCRIPTION = "Tools for managing memory technology devices."
SECTION = "base"
DEPENDS = "zlib lzo e2fsprogs util-linux"
HOMEPAGE = "http://www.linux-mtd.infradead.org/"
LICENSE = "GPLv2"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
file://include/common.h;beginline=1;endline=17;md5=ba05b07912a44ea2bf81ce409380049c"
SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=v${PV} \
file://add-exclusion-to-mkfs-jffs2-git-2.patch;patch=1 \
file://fix-ignoreerrors-git.patch;patch=1 \
file://add-oobsize-64-and-writesize-4096-as-normal-nand.patch;patch=1"
file://add-exclusion-to-mkfs-jffs2-git-2.patch;patch=1"
S = "${WORKDIR}/git/"
PR = "r0"
EXTRA_OEMAKE = "'CC=${CC}' 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR' 'BUILDDIR=${S}'"
do_install () {
@@ -24,3 +26,6 @@ do_install () {
PARALLEL_MAKE = ""
BBCLASSEXTEND = "native"
SRC_URI[md5sum] = "645519b753b364d52c4b941dcee3dd7e"
SRC_URI[sha256sum] = "51d6a77c7e673219bb89c4b119f336d9f2f5a5e065a12ecf9636c5348d099a0e"