summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/e2fsprogs
diff options
context:
space:
mode:
authorPaul Barker <paul@paulbarker.me.uk>2014-08-19 18:52:17 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-23 09:26:09 +0100
commitcb860e15434ea35c644b50eee25fd1e942c88e52 (patch)
tree74b88b13fcb260727823f38b996b1794b719bfc2 /meta/recipes-devtools/e2fsprogs
parent76070017cd5d882c9ed51eb292edfd7bb32cd2bf (diff)
downloadpoky-cb860e15434ea35c644b50eee25fd1e942c88e52.tar.gz
e2fsprogs: Backport fixes for building with musl
Both of these fixes have been applied upstream and improve general code correctness. They are needed when building with TCLIBC=musl but shouldn't cause any harm with other libc implementations. (From OE-Core rev: 23a533908355b7bb37ce34b073ac91aa20c5776d) Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/e2fsprogs')
-rw-r--r--meta/recipes-devtools/e2fsprogs/e2fsprogs/0012-Fix-musl-build-failures.patch54
-rw-r--r--meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb1
2 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs/0012-Fix-musl-build-failures.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs/0012-Fix-musl-build-failures.patch
new file mode 100644
index 0000000000..2624f90e72
--- /dev/null
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs/0012-Fix-musl-build-failures.patch
@@ -0,0 +1,54 @@
1From c6ff7feb9038d6e8aaffe2e69b205ad5fa33df2f Mon Sep 17 00:00:00 2001
2From: Paul Barker <paul@paulbarker.me.uk>
3Date: Mon, 18 Aug 2014 21:02:56 +0200
4Subject: [PATCH] Fix musl build failures
5
6In lib/ext2fs/unix_io.c, __u64 should be used instead of __uint64_t. This type
7is guaranteed by the e2fsprogs build system.
8(795c02def3681a99cc792a5ebc162d06f8a1eeb7)
9
10In misc/create_inode.c, <limits.h> is needed for the definition of PATH_MAX.
11(bbccc6f3c6a106721fb6f1ef4df6bc32c7986235)
12
13Both of these fixes have been made upstream with the git commit IDs given but
14those are larger commits containing other changes not needed here.
15
16Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
17
18Upstream-status: Backport
19---
20 lib/ext2fs/unix_io.c | 6 +++---
21 misc/create_inode.c | 1 +
22 2 files changed, 4 insertions(+), 3 deletions(-)
23
24diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
25index 19be630..0cc0f52 100644
26--- a/lib/ext2fs/unix_io.c
27+++ b/lib/ext2fs/unix_io.c
28@@ -931,10 +931,10 @@ static errcode_t unix_discard(io_channel channel, unsigned long long block,
29
30 if (channel->flags & CHANNEL_FLAGS_BLOCK_DEVICE) {
31 #ifdef BLKDISCARD
32- __uint64_t range[2];
33+ __u64 range[2];
34
35- range[0] = (__uint64_t)(block) * channel->block_size;
36- range[1] = (__uint64_t)(count) * channel->block_size;
37+ range[0] = (__u64)(block) * channel->block_size;
38+ range[1] = (__u64)(count) * channel->block_size;
39
40 ret = ioctl(data->dev, BLKDISCARD, &range);
41 #else
42diff --git a/misc/create_inode.c b/misc/create_inode.c
43index 6d8de04..fcec5aa 100644
44--- a/misc/create_inode.c
45+++ b/misc/create_inode.c
46@@ -1,4 +1,5 @@
47 #include "create_inode.h"
48+#include <limits.h>
49
50 #if __STDC_VERSION__ < 199901L
51 # if __GNUC__ >= 2
52--
531.9.1
54
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb
index 530255474d..a08e937b04 100644
--- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb
@@ -16,6 +16,7 @@ SRC_URI += "file://acinclude.m4 \
16 file://0009-misc-create_inode.c-handle-hardlinks.patch \ 16 file://0009-misc-create_inode.c-handle-hardlinks.patch \
17 file://0010-debugfs-use-the-functions-in-misc-create_inode.c.patch \ 17 file://0010-debugfs-use-the-functions-in-misc-create_inode.c.patch \
18 file://0011-mke2fs.8.in-update-the-manual-for-the-d-option.patch \ 18 file://0011-mke2fs.8.in-update-the-manual-for-the-d-option.patch \
19 file://0012-Fix-musl-build-failures.patch \
19 file://0001-e2fsprogs-fix-cross-compilation-problem.patch \ 20 file://0001-e2fsprogs-fix-cross-compilation-problem.patch \
20 file://misc-mke2fs.c-return-error-when-failed-to-populate-fs.patch \ 21 file://misc-mke2fs.c-return-error-when-failed-to-populate-fs.patch \
21" 22"