From bf98d8125923b60502c7013ff2079e50a108e0ae Mon Sep 17 00:00:00 2001
From: Luka Perkov <luka@openwrt.org>
Date: Mon, 24 Mar 2014 00:19:44 +0000
Subject: util-linux: update to 2.24.1

Signed-off-by: Luka Perkov <luka@openwrt.org>

SVN-Revision: 40010
---
 package/utils/util-linux/patches/002-fix-endianess.patch | 13 -------------
 1 file changed, 13 deletions(-)
 delete mode 100644 package/utils/util-linux/patches/002-fix-endianess.patch

(limited to 'package/utils/util-linux/patches/002-fix-endianess.patch')

diff --git a/package/utils/util-linux/patches/002-fix-endianess.patch b/package/utils/util-linux/patches/002-fix-endianess.patch
deleted file mode 100644
index 4c59932cda..0000000000
--- a/package/utils/util-linux/patches/002-fix-endianess.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: util-linux-2.21.2/libblkid/src/superblocks/swap.c
-===================================================================
---- util-linux-2.21.2.orig/libblkid/src/superblocks/swap.c	2012-05-15 13:51:45.814410455 +0200
-+++ util-linux-2.21.2/libblkid/src/superblocks/swap.c	2013-06-12 23:23:03.270742199 +0200
-@@ -48,7 +48,7 @@
- 
- 	/* SWAPSPACE2 - check for wrong version or zeroed pagecount */
- 	if (strcmp(version, "2") == 0 &&
--	    (hdr->version != 1 || hdr->lastpage == 0))
-+	    ((hdr->version != 1 && swab32(hdr->version) != 1) || hdr->lastpage == 0))
- 		return -1;
- 
- 	/* arbitrary sanity check.. is there any garbage down there? */
-- 
cgit v1.2.3