diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-06-09 18:12:12 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-30 20:56:35 +0100 |
commit | 0c10be57b72901464d4bb9ea7b5383c42b08bcae (patch) | |
tree | 78e8746ac8215577208ce658bfb8001f43d9a6b9 /meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb | |
parent | 64497638e70c97f417c2bcdaf99ffcc843ad58ec (diff) | |
download | poky-0c10be57b72901464d4bb9ea7b5383c42b08bcae.tar.gz |
btrfs-tools: new recipe for tools to operate on btrfs images
Added these patches to the recipe to get it to work as desired:
Upstream patches from tmp & for-dragonn branches of repository http://git.kernel.org/?p=linux/kernel/git/mason/btrfs-progs-unstable.git
Also included the debian patches.
Nitin's patch to make the makefile cross friendly
And Xin Zhong's patch to improve mkfs.btrfs
(From OE-Core rev: 57a2140dc9673c65fea088fbd024fbd002e6937b)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb')
-rw-r--r-- | meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb | 52 |
1 files changed, 52 insertions, 0 deletions
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..312dff30f3 --- /dev/null +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb | |||
@@ -0,0 +1,52 @@ | |||
1 | SUMMARY = "Checksumming Copy on Write Filesystem utilities" | ||
2 | DESCRIPTION = "Btrfs is a new copy on write filesystem for Linux aimed at \ | ||
3 | implementing advanced features while focusing on fault tolerance, repair and \ | ||
4 | easy administration. \ | ||
5 | This package contains utilities (mkfs, fsck, btrfsctl) used to work with \ | ||
6 | btrfs and an utility (btrfs-convert) to make a btrfs filesystem from an ext3." | ||
7 | |||
8 | HOMEPAGE = "https://btrfs.wiki.kernel.org" | ||
9 | |||
10 | LICENSE = "GPLv2" | ||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067" | ||
12 | SECTION = "base" | ||
13 | |||
14 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs-unstable.git;protocol=git;tag=1b444cd2e6ab8dcafdd47dbaeaae369dd1517c17;branch=master" | ||
15 | |||
16 | S = "${WORKDIR}/git" | ||
17 | |||
18 | PR = "r0" | ||
19 | |||
20 | SRC_URI += "file://upstream-tmp/0001-Btrfs-progs-add-a-btrfs-select-super-command-to-over.patch \ | ||
21 | file://upstream-tmp/0002-Btrfs-progs-use-safe-string-manipulation-functions.patch \ | ||
22 | file://upstream-tmp/0003-Btrfs-progs-utils-Informative-errors.patch \ | ||
23 | file://upstream-tmp/0004-update-man-page-to-new-defragment-command-interface.patch \ | ||
24 | file://upstream-tmp/0005-Improve-error-handling-in-the-btrfs-command.patch \ | ||
25 | file://upstream-tmp/0006-Btrfs-progs-update-super-fields-for-space-cache.patch \ | ||
26 | file://upstream-tmp/0007-Btrfs-progs-add-support-for-mixed-data-metadata-bloc.patch \ | ||
27 | file://upstream-tmp/0008-Update-for-lzo-support.patch \ | ||
28 | file://upstream-tmp/0009-Update-clean-up-btrfs-help-and-man-page-V2.patch \ | ||
29 | file://upstream-tmp/0010-Deprecate-btrfsctl-btrfs-show-btrfs-vol.patch \ | ||
30 | file://upstream-tmp/0011-Add-the-btrfs-filesystem-label-command.patch \ | ||
31 | file://upstream-tmp/0012-Btrfs-progs-Update-man-page-for-mixed-data-metadata-.patch \ | ||
32 | file://upstream-tmp/0013-btrfs-progs-Add-new-feature-to-mkfs.btrfs-to-make-fi.patch \ | ||
33 | file://upstream-tmp/0014-btrfs-progs-fix-wrong-extent-buffer-size-when-readin.patch \ | ||
34 | file://upstream-tmp/0015-btrfs-progs-add-discard-support-to-mkfs.patch \ | ||
35 | file://upstream-for-dragonn/0001-Fill-missing-devices-so-degraded-filesystems-can-be-.patch \ | ||
36 | file://upstream-for-dragonn/0002-Check-for-RAID10-in-set_avail_alloc_bits.patch \ | ||
37 | file://upstream-for-dragonn/0003-Print-the-root-generation-in-btrfs-debug-tree.patch \ | ||
38 | file://upstream-for-dragonn/0004-Allow-partial-FS-opens-for-btrfsck-scanning.patch \ | ||
39 | file://mkfs-xin-fixes.patch \ | ||
40 | file://debian/01-labels.patch \ | ||
41 | file://debian/02-ftbfs.patch \ | ||
42 | file://fix_use_of_gcc.patch \ | ||
43 | " | ||
44 | |||
45 | SRC_URI[md5sum] = "78b1700d318de8518abfaab71f99a885" | ||
46 | SRC_URI[sha256sum] = "1285774e0cb72984fac158dd046c8d405324754febd30320cd31e459253e4b65" | ||
47 | |||
48 | do_install () { | ||
49 | oe_runmake 'DESTDIR=${D}' install | ||
50 | } | ||
51 | |||
52 | BBCLASSEXTEND = "native" | ||