summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.1.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-10-18 16:38:50 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-28 16:15:18 +0100
commit49d2d47586e0efcbfbb3c0f13e67297b822e14ab (patch)
tree63f110a56de821b173c6ba5c4220596f2b018f94 /meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.1.bb
parent63b5ba4e55f0e006be9d1045d6fd054bb94531f2 (diff)
downloadpoky-49d2d47586e0efcbfbb3c0f13e67297b822e14ab.tar.gz
btrfs-tools: update to 4.8.1
Remove fix-parallel.patch as version.h is now generated by autoconf in configure() (From OE-Core rev: ca6ad4a53ba79201ea481c7f16c7f0c638fc0b3d) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.1.bb')
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.1.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.1.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.1.bb
new file mode 100644
index 0000000000..b06fd4adcc
--- /dev/null
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.8.1.bb
@@ -0,0 +1,32 @@
1SUMMARY = "Checksumming Copy on Write Filesystem utilities"
2DESCRIPTION = "Btrfs is a new copy on write filesystem for Linux aimed at \
3implementing advanced features while focusing on fault tolerance, repair and \
4easy administration. \
5This package contains utilities (mkfs, fsck, btrfsctl) used to work with \
6btrfs and an utility (btrfs-convert) to make a btrfs filesystem from an ext3."
7
8HOMEPAGE = "https://btrfs.wiki.kernel.org"
9
10LICENSE = "GPLv2"
11LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
12SECTION = "base"
13DEPENDS = "util-linux attr e2fsprogs lzo acl"
14RDEPENDS_${PN} = "libgcc"
15
16SRCREV = "d8d0a60406b14b140e83a8c0d5eaedb5dca44092"
17SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \
18"
19
20inherit autotools-brokensep pkgconfig
21
22EXTRA_OECONF += "--disable-documentation"
23EXTRA_OECONF_append_libc-musl = " --disable-backtrace "
24
25
26do_configure_prepend() {
27 sh autogen.sh
28}
29
30S = "${WORKDIR}/git"
31
32BBCLASSEXTEND = "native"