summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/btrfs-tools')
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-fix-error-for-undeclared-macro-on-musl.patch28
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb (renamed from meta/recipes-devtools/btrfs-tools/btrfs-tools_5.12.1.bb)3
2 files changed, 30 insertions, 1 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-fix-error-for-undeclared-macro-on-musl.patch b/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-fix-error-for-undeclared-macro-on-musl.patch
new file mode 100644
index 0000000000..251f5d2b0e
--- /dev/null
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-fix-error-for-undeclared-macro-on-musl.patch
@@ -0,0 +1,28 @@
1From a9802902d37b83c2c992cfe34179312f7209a962 Mon Sep 17 00:00:00 2001
2From: Wang Mingyu <wangmy@fujitsu.com>
3Date: Mon, 19 Jul 2021 10:12:12 +0900
4Subject: [PATCH] fix error for undeclared macro on musl
5
6Fixes the following compilation errors with musl that does not have
7NAME_MAX declared:
8'NAME_MAX' undeclared (first use in this function)
9
10Upstream-Status: Pending
11
12Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
13---
14 cmds/filesystem-usage.c | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/cmds/filesystem-usage.c b/cmds/filesystem-usage.c
18index 50d8995e..856e9d7b 100644
19--- a/cmds/filesystem-usage.c
20+++ b/cmds/filesystem-usage.c
21@@ -24,6 +24,7 @@
22 #include <stdarg.h>
23 #include <getopt.h>
24 #include <fcntl.h>
25+#include <limits.h>
26
27 #include "common/utils.h"
28 #include "kerncompat.h"
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.12.1.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb
index d0c9cf2a99..fa33cad7b9 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.12.1.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.13.bb
@@ -19,8 +19,9 @@ DEPENDS_append_class-target = " udev"
19SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \ 19SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \
20 file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \ 20 file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \
21 file://0001-btrfs-tools-include-linux-const.h-to-fix-build-with-.patch \ 21 file://0001-btrfs-tools-include-linux-const.h-to-fix-build-with-.patch \
22 file://0001-fix-error-for-undeclared-macro-on-musl.patch \
22 " 23 "
23SRCREV = "96d77fcefdd3b9fd297b5aabbce6dc43e2315ee2" 24SRCREV = "de4914dbfd7e419d1c534b3d2ec8728e702114bf"
24S = "${WORKDIR}/git" 25S = "${WORKDIR}/git"
25 26
26PACKAGECONFIG ??= " \ 27PACKAGECONFIG ??= " \