summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
commit972dcfcdbfe75dcfeb777150c136576cf1a71e99 (patch)
tree97a61cd7e293d7ae9d56ef7ed0f81253365bb026 /meta/recipes-devtools/btrfs-tools
downloadpoky-972dcfcdbfe75dcfeb777150c136576cf1a71e99.tar.gz
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-devtools/btrfs-tools')
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools/nodocs.patch22
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb27
2 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools/nodocs.patch b/meta/recipes-devtools/btrfs-tools/btrfs-tools/nodocs.patch
new file mode 100644
index 0000000000..6df4e10a19
--- /dev/null
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools/nodocs.patch
@@ -0,0 +1,22 @@
1Doc generation requires xmlto and ascidoc which we don't have right now.
2Disable doc generation until such times as we have the right dependencies.
3
4RP 2014/7/16
5
6Upstream-Status: Inappropriate
7
8Index: git/Makefile
9===================================================================
10--- git.orig/Makefile 2014-07-16 13:21:43.289386655 +0000
11+++ git/Makefile 2014-07-16 13:42:46.453421079 +0000
12@@ -57,8 +57,8 @@
13 btrfs_fragment_libs = -lgd -lpng -ljpeg -lfreetype
14
15 SUBDIRS =
16-BUILDDIRS = $(patsubst %,build-%,$(SUBDIRS)) build-Documentation
17-INSTALLDIRS = $(patsubst %,install-%,$(SUBDIRS)) install-Documentation
18+BUILDDIRS = $(patsubst %,build-%,$(SUBDIRS))
19+INSTALLDIRS = $(patsubst %,install-%,$(SUBDIRS))
20 CLEANDIRS = $(patsubst %,clean-%,$(SUBDIRS))
21
22 .PHONY: $(SUBDIRS)
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
new file mode 100644
index 0000000000..0eed13bfb1
--- /dev/null
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
@@ -0,0 +1,27 @@
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"
14
15SRCREV = "24cf4d8c3ee924b474f68514e0167cc2e602a48d"
16SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git \
17 file://nodocs.patch"
18S = "${WORKDIR}/git"
19
20PV = "3.14.2+git${SRCPV}"
21
22
23do_install () {
24 oe_runmake 'DESTDIR=${D}' install
25}
26
27BBCLASSEXTEND = "native"