diff options
author | John Crispin <john@openwrt.org> | 2013-06-21 16:52:48 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-06-21 16:52:48 +0000 |
commit | ed6e69444ac5d59efe45b86a46e17216af8e2b82 (patch) | |
tree | e3279b52aefbd3bc481f0cb76515c2af01f8c5a8 /package/util-linux/patches/002-fix-endianess.patch | |
parent | 9e7adce6a4665521c2d1bedf8f78a35ba06b7cbc (diff) | |
download | upstream-ed6e69444ac5d59efe45b86a46e17216af8e2b82.tar.gz upstream-ed6e69444ac5d59efe45b86a46e17216af8e2b82.tar.bz2 upstream-ed6e69444ac5d59efe45b86a46e17216af8e2b82.zip |
util-linux: fix endianess bug and stage libraries properly
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 36985
Diffstat (limited to 'package/util-linux/patches/002-fix-endianess.patch')
-rw-r--r-- | package/util-linux/patches/002-fix-endianess.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/util-linux/patches/002-fix-endianess.patch b/package/util-linux/patches/002-fix-endianess.patch new file mode 100644 index 0000000000..4c59932cda --- /dev/null +++ b/package/util-linux/patches/002-fix-endianess.patch @@ -0,0 +1,13 @@ +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? */ |