summaryrefslogtreecommitdiff
path: root/tools/e2fsprogs
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2012-06-09 17:59:57 +0000
committerLuka Perkov <luka@openwrt.org>2012-06-09 17:59:57 +0000
commit5d141f8b1e8076768c7c5a1bd053e339d03df9d8 (patch)
treedffeb3313afc89aef145b4a08d0c1d061e635f90 /tools/e2fsprogs
parent30edb14356c6db742b85104e5b684219f432d17e (diff)
downloadmtk-20170518-5d141f8b1e8076768c7c5a1bd053e339d03df9d8.zip
mtk-20170518-5d141f8b1e8076768c7c5a1bd053e339d03df9d8.tar.gz
mtk-20170518-5d141f8b1e8076768c7c5a1bd053e339d03df9d8.tar.bz2
e2fsprogs: update to 1.42.3
SVN-Revision: 32142
Diffstat (limited to 'tools/e2fsprogs')
-rw-r--r--tools/e2fsprogs/Makefile6
-rw-r--r--tools/e2fsprogs/patches/001-exit_0_on_corrected_errors.patch2
-rw-r--r--tools/e2fsprogs/patches/002-freebsd_fix.patch18
-rw-r--r--tools/e2fsprogs/patches/003-darwin_directio_fix.patch36
-rw-r--r--tools/e2fsprogs/patches/004-big_endian_compile_fix.patch26
-rw-r--r--tools/e2fsprogs/patches/005-posix_memalign.patch31
6 files changed, 4 insertions, 115 deletions
diff --git a/tools/e2fsprogs/Makefile b/tools/e2fsprogs/Makefile
index 0bfcfb4..865ed9f 100644
--- a/tools/e2fsprogs/Makefile
+++ b/tools/e2fsprogs/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2010 OpenWrt.org
+# Copyright (C) 2010-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -8,8 +8,8 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=e2fsprogs
-PKG_VERSION:=1.41.13
-PKG_MD5SUM:=7508a192c7a9471e2128424f4eafac1c
+PKG_VERSION:=1.42.3
+PKG_MD5SUM:=73431146f58d40fe1375aba2060f0da8
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
diff --git a/tools/e2fsprogs/patches/001-exit_0_on_corrected_errors.patch b/tools/e2fsprogs/patches/001-exit_0_on_corrected_errors.patch
index 4dbece5..67a30f6 100644
--- a/tools/e2fsprogs/patches/001-exit_0_on_corrected_errors.patch
+++ b/tools/e2fsprogs/patches/001-exit_0_on_corrected_errors.patch
@@ -1,6 +1,6 @@
--- a/e2fsck/e2fsck.h
+++ b/e2fsck/e2fsck.h
-@@ -65,7 +65,7 @@
+@@ -73,7 +73,7 @@
* Exit codes used by fsck-type programs
*/
#define FSCK_OK 0 /* No errors */
diff --git a/tools/e2fsprogs/patches/002-freebsd_fix.patch b/tools/e2fsprogs/patches/002-freebsd_fix.patch
deleted file mode 100644
index 5065e05..0000000
--- a/tools/e2fsprogs/patches/002-freebsd_fix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/lib/ext2fs/tdb.c
-+++ b/lib/ext2fs/tdb.c
-@@ -29,6 +29,7 @@ Last Changed Date: 2007-06-22 13:36:10 -
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-+#include <sys/file.h>
- #ifdef CONFIG_STAND_ALONE
- #define HAVE_MMAP
- #define HAVE_STRDUP
-@@ -55,7 +56,6 @@ Last Changed Date: 2007-06-22 13:36:10 -
- #include <utime.h>
- #endif
- #include <sys/stat.h>
--#include <sys/file.h>
- #include <fcntl.h>
-
- #ifdef HAVE_SYS_MMAN_H
diff --git a/tools/e2fsprogs/patches/003-darwin_directio_fix.patch b/tools/e2fsprogs/patches/003-darwin_directio_fix.patch
deleted file mode 100644
index 971c7ad..0000000
--- a/tools/e2fsprogs/patches/003-darwin_directio_fix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/lib/ext2fs/unix_io.c
-+++ b/lib/ext2fs/unix_io.c
-@@ -428,6 +428,7 @@ static errcode_t unix_open(const char *n
- struct unix_private_data *data = NULL;
- errcode_t retval;
- int open_flags;
-+ int f_nocache = 0;
- struct stat st;
- #ifdef __linux__
- struct utsname ut;
-@@ -464,7 +465,11 @@ static errcode_t unix_open(const char *n
- if (flags & IO_FLAG_EXCLUSIVE)
- open_flags |= O_EXCL;
- if (flags & IO_FLAG_DIRECT_IO)
-+#if !defined(O_DIRECT) && defined(F_NOCACHE)
-+ f_nocache = F_NOCACHE;
-+#else
- open_flags |= O_DIRECT;
-+#endif
- data->flags = flags;
-
- #ifdef HAVE_OPEN64
-@@ -477,6 +482,13 @@ static errcode_t unix_open(const char *n
- goto cleanup;
- }
-
-+ if (f_nocache) {
-+ if (fcntl(data->dev, f_nocache, 1) < 0) {
-+ retval = errno;
-+ goto cleanup;
-+ }
-+ }
-+
- #ifdef BLKSSZGET
- if (flags & IO_FLAG_DIRECT_IO) {
- if (ioctl(data->dev, BLKSSZGET, &data->align) != 0)
diff --git a/tools/e2fsprogs/patches/004-big_endian_compile_fix.patch b/tools/e2fsprogs/patches/004-big_endian_compile_fix.patch
deleted file mode 100644
index 9c3e336..0000000
--- a/tools/e2fsprogs/patches/004-big_endian_compile_fix.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Theodore Ts'o <tytso@mit.edu>
-Date: Fri, 17 Dec 2010 03:11:43 +0000 (-0500)
-Subject: libext2fs: Fix compile bug on big-endian architectures
-X-Git-Url: http://git.kernel.org/?p=fs%2Fext2%2Fe2fsprogs.git;a=commitdiff_plain;h=9098c986b64bb65a2b7fcd2724a400ba1f451f6b
-
-libext2fs: Fix compile bug on big-endian architectures
-
-Addresses-Sourceforge-Bug: #3138115
-
-Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
----
-
-diff --git a/lib/ext2fs/swapfs.c b/lib/ext2fs/swapfs.c
-index 6f6cec2..12427e0 100644
---- a/lib/ext2fs/swapfs.c
-+++ b/lib/ext2fs/swapfs.c
-@@ -72,7 +72,7 @@ void ext2fs_swap_super(struct ext2_super_block * sb)
- sb->s_flags = ext2fs_swab32(sb->s_flags);
- sb->s_kbytes_written = ext2fs_swab64(sb->s_kbytes_written);
- sb->s_snapshot_inum = ext2fs_swab32(sb->s_snapshot_inum);
-- sb->s_snapshot_id = ext2fs_swab32(s_snapshot_id);
-+ sb->s_snapshot_id = ext2fs_swab32(sb->s_snapshot_id);
- sb->s_snapshot_r_blocks_count =
- ext2fs_swab64(sb->s_snapshot_r_blocks_count);
- sb->s_snapshot_list = ext2fs_swab32(sb->s_snapshot_list);
-
diff --git a/tools/e2fsprogs/patches/005-posix_memalign.patch b/tools/e2fsprogs/patches/005-posix_memalign.patch
deleted file mode 100644
index 2ce4ead..0000000
--- a/tools/e2fsprogs/patches/005-posix_memalign.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/lib/ext2fs/ext2fs.h
-+++ b/lib/ext2fs/ext2fs.h
-@@ -1212,7 +1212,26 @@
-
- if (align == 0)
- align = 8;
-- if (retval = posix_memalign((void **) ptr, align, size)) {
-+#ifdef HAVE_POSIX_MEMALIGN
-+ retval = posix_memalign((void **)ptr, align, size);
-+#else
-+#ifdef HAVE_MEMALIGN
-+ if ((*(void **)ptr = (void *)memalign(align, size)) == NULL)
-+ retval = errno;
-+ else
-+ retval = 0;
-+#else
-+#ifdef HAVE_VALLOC
-+ if ((*(void **)ptr = valloc(size)) == NULL)
-+ retval = errno;
-+ else
-+ retval = 0;
-+#else
-+# error "Impossible to allocate aligned memory!"
-+#endif /* HAVE_VALLOC */
-+#endif /* HAVE_MEMALIGN */
-+#endif /* HAVE_POSIX_MEMALIGN */
-+ if (retval) {
- if (retval == ENOMEM)
- return EXT2_ET_NO_MEMORY;
- return retval;
---