From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: From: Robert Schwebel Date: Sun, 30 Oct 2011 23:00:47 +0100 Message-Id: <1320012059-24971-16-git-send-email-r.schwebel@pengutronix.de> In-Reply-To: <1320012059-24971-1-git-send-email-r.schwebel@pengutronix.de> References: <20111030220011.GK14918@pengutronix.de> <1320012059-24971-1-git-send-email-r.schwebel@pengutronix.de> Subject: [ptxdist] [PATCH 16/28] e2fsprogs: clean up patches Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de Cc: Robert Schwebel Signed-off-by: Robert Schwebel --- .../0001-Fixed-bitops.h-for-Coldfire-V4E.patch | 30 ++++++++++++++++++++ .../0002-fix-linking-problem.patch | 28 ++++++++++++++++++ .../coldfire-v4e-compilefix.patch | 27 ------------------ .../e2fsprogs-1.41.14/fix-libblkid-linking.diff | 24 ---------------- patches/e2fsprogs-1.41.14/series | 2 - 5 files changed, 58 insertions(+), 53 deletions(-) create mode 100644 patches/e2fsprogs-1.41.14/0001-Fixed-bitops.h-for-Coldfire-V4E.patch create mode 100644 patches/e2fsprogs-1.41.14/0002-fix-linking-problem.patch delete mode 100644 patches/e2fsprogs-1.41.14/coldfire-v4e-compilefix.patch delete mode 100644 patches/e2fsprogs-1.41.14/fix-libblkid-linking.diff delete mode 100644 patches/e2fsprogs-1.41.14/series diff --git a/patches/e2fsprogs-1.41.14/0001-Fixed-bitops.h-for-Coldfire-V4E.patch b/patches/e2fsprogs-1.41.14/0001-Fixed-bitops.h-for-Coldfire-V4E.patch new file mode 100644 index 0000000..d5c938f --- /dev/null +++ b/patches/e2fsprogs-1.41.14/0001-Fixed-bitops.h-for-Coldfire-V4E.patch @@ -0,0 +1,30 @@ +From 164fd99430e3115feed20f727938d66d3905b961 Mon Sep 17 00:00:00 2001 +From: Carsten Schlote +Date: Tue, 11 Mar 2008 00:32:20 +0100 +Subject: [PATCH 1/2] Fixed bitops.h for Coldfire V4E + +Commented out assembly inline code for mc68020 or higher. +These mnemonics aren't available on Coldfire. Using C routines +now. + +Signed-off-by: Carsten Schlote +--- + lib/ext2fs/bitops.h | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/lib/ext2fs/bitops.h b/lib/ext2fs/bitops.h +index ce70539..7e05ec3 100644 +--- a/lib/ext2fs/bitops.h ++++ b/lib/ext2fs/bitops.h +@@ -244,7 +244,7 @@ _INLINE_ __u16 ext2fs_swab16(__u16 val) + #endif /* i386 */ + + #if ((defined __GNUC__) && !defined(_EXT2_USE_C_VERSIONS_) && \ +- (defined(__mc68000__))) ++ (defined(__mc68000__)) && !defined(__mcoldfire__)) + + #define _EXT2_HAVE_ASM_BITOPS_ + +-- +1.7.7 + diff --git a/patches/e2fsprogs-1.41.14/0002-fix-linking-problem.patch b/patches/e2fsprogs-1.41.14/0002-fix-linking-problem.patch new file mode 100644 index 0000000..e7dba9b --- /dev/null +++ b/patches/e2fsprogs-1.41.14/0002-fix-linking-problem.patch @@ -0,0 +1,28 @@ +From 43b0f9d24cc6a92286775d6e0a4f09943658a98b Mon Sep 17 00:00:00 2001 +From: Michael Olbrich +Date: Sat, 29 Oct 2011 19:11:54 +0200 +Subject: [PATCH 2/2] fix linking problem + +libblkid gets the wrong linker path. This results in link errors for e2fsck. + +Signed-off-by: Michael Olbrich +--- + lib/blkid/Makefile.in | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/lib/blkid/Makefile.in b/lib/blkid/Makefile.in +index e89318e..2e125b3 100644 +--- a/lib/blkid/Makefile.in ++++ b/lib/blkid/Makefile.in +@@ -36,7 +36,7 @@ ELF_SO_VERSION = 1 + ELF_IMAGE = libblkid + ELF_MYDIR = blkid + ELF_INSTALL_DIR = $(root_libdir) +-ELF_OTHER_LIBS = -L../.. -luuid ++ELF_OTHER_LIBS = ../../libuuid.so + + BSDLIB_VERSION = 2.0 + BSDLIB_IMAGE = libblkid +-- +1.7.7 + diff --git a/patches/e2fsprogs-1.41.14/coldfire-v4e-compilefix.patch b/patches/e2fsprogs-1.41.14/coldfire-v4e-compilefix.patch deleted file mode 100644 index 3acbd9a..0000000 --- a/patches/e2fsprogs-1.41.14/coldfire-v4e-compilefix.patch +++ /dev/null @@ -1,27 +0,0 @@ -From: Carsten Schlote -Date: Tue, 11 Mar 2008 00:32:20 +0100 -Subject: [PATCH] [e2fsprogs-1.40.4] Fixed bitops.h for Coldfire V4E - -Commented out assembly inline code for mc68020 or higher. -These mnemonics aren't available on Coldfire. Using C routines -now. - -Signed-off-by: Carsten Schlote - ---- - lib/ext2fs/bitops.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -Index: e2fsprogs-1.41.12/lib/ext2fs/bitops.h -=================================================================== ---- e2fsprogs-1.41.12.orig/lib/ext2fs/bitops.h -+++ e2fsprogs-1.41.12/lib/ext2fs/bitops.h -@@ -244,7 +244,7 @@ _INLINE_ __u16 ext2fs_swab16(__u16 val) - #endif /* i386 */ - - #if ((defined __GNUC__) && !defined(_EXT2_USE_C_VERSIONS_) && \ -- (defined(__mc68000__))) -+ (defined(__mc68000__)) && !defined(__mcoldfire__)) - - #define _EXT2_HAVE_ASM_BITOPS_ - diff --git a/patches/e2fsprogs-1.41.14/fix-libblkid-linking.diff b/patches/e2fsprogs-1.41.14/fix-libblkid-linking.diff deleted file mode 100644 index 8fe5d44..0000000 --- a/patches/e2fsprogs-1.41.14/fix-libblkid-linking.diff +++ /dev/null @@ -1,24 +0,0 @@ -Subject: fix linking problem -From: Michael Olbrich - -libblkid gets the wrong linker path. This results in link errors for e2fsck. - -Signed-off-by: Michael Olbrich - ---- - lib/blkid/Makefile.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -Index: e2fsprogs-1.41.12/lib/blkid/Makefile.in -=================================================================== ---- e2fsprogs-1.41.12.orig/lib/blkid/Makefile.in -+++ e2fsprogs-1.41.12/lib/blkid/Makefile.in -@@ -36,7 +36,7 @@ ELF_SO_VERSION = 1 - ELF_IMAGE = libblkid - ELF_MYDIR = blkid - ELF_INSTALL_DIR = $(root_libdir) --ELF_OTHER_LIBS = -L../.. -luuid -+ELF_OTHER_LIBS = ../../libuuid.so - - BSDLIB_VERSION = 2.0 - BSDLIB_IMAGE = libblkid diff --git a/patches/e2fsprogs-1.41.14/series b/patches/e2fsprogs-1.41.14/series deleted file mode 100644 index a5628d6..0000000 --- a/patches/e2fsprogs-1.41.14/series +++ /dev/null @@ -1,2 +0,0 @@ -coldfire-v4e-compilefix.patch -fix-libblkid-linking.diff -- 1.7.7 -- ptxdist mailing list ptxdist@pengutronix.de