]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
Bump mtd-utils to 1.2.0
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Wed, 23 Dec 2009 13:41:36 +0000 (10:41 -0300)
committerPeter Korsgaard <jacmet@sunsite.dk>
Wed, 23 Dec 2009 13:49:54 +0000 (14:49 +0100)
Closes #827.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
CHANGES
package/mtd/mtd-utils/mtd-utils-1.1.0-all-mkfs.jffs2-device_table-fix.patch [deleted file]
package/mtd/mtd-utils/mtd-utils-1.2.0-all-acl.patch [moved from package/mtd/mtd-utils/mtd-utils-1.1.0-all-acl.patch with 100% similarity]
package/mtd/mtd-utils/mtd-utils-1.2.0-all-disable-ubi.patch [new file with mode: 0644]
package/mtd/mtd-utils/mtd-utils-1.2.0-all-flashcp-npow2-erase.patch [moved from package/mtd/mtd-utils/mtd-utils-1.1.0-all-flashcp-npow2-erase.patch with 100% similarity]
package/mtd/mtd-utils/mtd-utils-1.2.0-all-no-errorh.patch [new file with mode: 0644]
package/mtd/mtd-utils/mtd-utils-1.2.0-all-targets.patch [moved from package/mtd/mtd-utils/mtd-utils-1.1.0-all-targets.patch with 100% similarity]
package/mtd/mtd-utils/mtd.mk

diff --git a/CHANGES b/CHANGES
index 6b6a6e84fed0695bf061d3cbdbc33d0144eb4e24..9894db92b8b8bf94e357bfd30a7708df14477ea5 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -25,6 +25,7 @@
        #773: [SECURITY] Update bind to 9.5.2-P1
        #795: Minor edits to fix typos, grammar, spelling, usage in documen...
        #823: Editor backup files (~) is copied from the target_skeleton
+       #827: Bump mtd-utils package to version 1.2.0
 
 2009.11, Released December 1st, 2009:
 
diff --git a/package/mtd/mtd-utils/mtd-utils-1.1.0-all-mkfs.jffs2-device_table-fix.patch b/package/mtd/mtd-utils/mtd-utils-1.1.0-all-mkfs.jffs2-device_table-fix.patch
deleted file mode 100644 (file)
index 1fe23c8..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-mkfs.jffs2.c: fix device_table handling
-
-find_filesystem_entry would ignore device_table entries for existing elements
-if the device type / permissions weren't exactly the same, effectively
-rendering device_table useless.
----
- mkfs.jffs2.c |    3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-Index: mtd-utils-1.1.0/mkfs.jffs2.c
-===================================================================
---- mtd-utils-1.1.0.orig/mkfs.jffs2.c
-+++ mtd-utils-1.1.0/mkfs.jffs2.c
-@@ -246,8 +246,7 @@
-               e = dir->files;
-       }
-       while (e) {
--              /* Only bother to do the expensive strcmp on matching file types */
--              if (type == (e->sb.st_mode & S_IFMT)) {
-+              if (1) {
-                       if (S_ISDIR(e->sb.st_mode)) {
-                               int len = strlen(e->fullname);
diff --git a/package/mtd/mtd-utils/mtd-utils-1.2.0-all-disable-ubi.patch b/package/mtd/mtd-utils/mtd-utils-1.2.0-all-disable-ubi.patch
new file mode 100644 (file)
index 0000000..606cb46
--- /dev/null
@@ -0,0 +1,24 @@
+diff -Nura mtd-utils-1.2.0/Makefile mtd-utils-1.2.0-noubi/Makefile
+--- mtd-utils-1.2.0/Makefile   2008-06-27 13:21:28.000000000 -0300
++++ mtd-utils-1.2.0-noubi/Makefile     2009-12-23 10:26:25.000000000 -0300
+@@ -45,7 +45,6 @@
+ .SUFFIXES:
+ all: $(TARGETS)
+-      make -C $(BUILDDIR)/ubi-utils
+ IGNORE=${wildcard $(BUILDDIR)/.*.c.dep}
+ -include ${IGNORE}
+@@ -53,7 +52,6 @@
+ clean:
+       rm -f $(BUILDDIR)/*.o $(TARGETS) $(BUILDDIR)/.*.c.dep $(SYMLINKS)
+       if [ "$(BUILDDIR)x" != ".x" ]; then rm -rf $(BUILDDIR); fi
+-      make -C $(BUILDDIR)/ubi-utils clean
+ $(SYMLINKS):
+       ln -sf ../fs/jffs2/$@ $@
+@@ -95,4 +93,3 @@
+       install -m0755 ${TARGETS} ${DESTDIR}/${SBINDIR}/
+       mkdir -p ${DESTDIR}/${MANDIR}/man1
+       gzip -9c mkfs.jffs2.1 > ${DESTDIR}/${MANDIR}/man1/mkfs.jffs2.1.gz
+-      make -C $(BUILDDIR)/ubi-utils install
diff --git a/package/mtd/mtd-utils/mtd-utils-1.2.0-all-no-errorh.patch b/package/mtd/mtd-utils/mtd-utils-1.2.0-all-no-errorh.patch
new file mode 100644 (file)
index 0000000..1fde16b
--- /dev/null
@@ -0,0 +1,22 @@
+diff -Nura mtd-utils-1.2.0/recv_image.c mtd-utils-1.2.0-noerror/recv_image.c
+--- mtd-utils-1.2.0/recv_image.c       2008-06-27 13:21:28.000000000 -0300
++++ mtd-utils-1.2.0-noerror/recv_image.c       2009-12-23 10:19:22.000000000 -0300
+@@ -2,7 +2,6 @@
+ #define _XOPEN_SOURCE 500
+ #include <errno.h>
+-#include <error.h>
+ #include <stdio.h>
+ #define __USE_GNU
+ #include <netdb.h>
+diff -Nura mtd-utils-1.2.0/serve_image.c mtd-utils-1.2.0-noerror/serve_image.c
+--- mtd-utils-1.2.0/serve_image.c      2008-06-27 13:21:28.000000000 -0300
++++ mtd-utils-1.2.0-noerror/serve_image.c      2009-12-23 10:19:33.000000000 -0300
+@@ -3,7 +3,6 @@
+ #include <time.h>
+ #include <errno.h>    
+-#include <error.h>    
+ #include <netdb.h>    
+ #include <stdio.h>    
+ #include <stdlib.h>   
index 6647373914e09ce4a633d9a9784c5c24ae4145f1..9b114de6845695ffe523fe37400de4d2b68ec198 100644 (file)
@@ -3,7 +3,7 @@
 # mtd provides jffs2 utilities
 #
 #############################################################
-MTD_VERSION:=1.1.0
+MTD_VERSION:=1.2.0
 MTD_SOURCE:=mtd-utils-$(MTD_VERSION).tar.bz2
 MTD_SITE:=ftp://ftp.infradead.org/pub/mtd-utils
 MTD_HOST_DIR:= $(TOOLCHAIN_DIR)/mtd_orig