summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.19.1.bb
diff options
context:
space:
mode:
authorwangmy <wangmy@fujitsu.com>2022-10-17 19:37:00 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-10-26 12:28:39 +0100
commit8965c3a1a6a3118b328b60f4fb17c2c46fd41bc4 (patch)
tree8ceb8e9c58615b08b282d0502c7d3100dae9a28f /meta/recipes-devtools/btrfs-tools/btrfs-tools_5.19.1.bb
parent7dc782a8fcc8bacc2e22a5ae3c02ec896043da56 (diff)
downloadpoky-8965c3a1a6a3118b328b60f4fb17c2c46fd41bc4.tar.gz
btrfs-tools: upgrade 5.19.1 -> 6.0
Changelog: ========== * fi usage: in tabular output, print total size and slack size * mkfs: * option -O now accepts values from -R to unify the interface (-R will continue to work) * zone reset and discard is done in parallel on all devices * removed option --leafsize, deprecated long time ago * corrupt-block: recalculate checksum when changing generation * fixes: * convert: fix reserved range detection and overlaps * mkfs: fix creating files with reserved inode numbers with --rootdir * receive: escape filenames in command attributes * fix extent buffer leaks after transaction abort * experimental: * mkfs: support for block-group-tree (kernel 6.1) * fsverity in send (protocol v3, WIP) * btrfstune -b converts to block-group-tree * other: * cleanups, refactoring * new and updated tests * update documentation (From OE-Core rev: 46bc09ca18ea4321854450d1fc04faf95f314ad6) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/btrfs-tools/btrfs-tools_5.19.1.bb')
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools_5.19.1.bb72
1 files changed, 0 insertions, 72 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.19.1.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.19.1.bb
deleted file mode 100644
index db8026e0f0..0000000000
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.19.1.bb
+++ /dev/null
@@ -1,72 +0,0 @@
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 = "GPL-2.0-only & LGPL-2.1-or-later"
11LIC_FILES_CHKSUM = " \
12 file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067 \
13 file://libbtrfsutil/COPYING;md5=4fbd65380cdd255951079008b364516c \
14"
15SECTION = "base"
16DEPENDS = "util-linux zlib"
17
18SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git;branch=master \
19 file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \
20 "
21SRCREV = "e1d9dab326e043696e6648aba4ccf90874d1d3d1"
22S = "${WORKDIR}/git"
23
24PACKAGECONFIG ??= " \
25 programs \
26 convert \
27 python \
28 crypto-builtin \
29"
30PACKAGECONFIG[manpages] = "--enable-documentation, --disable-documentation, python3-sphinx-native"
31PACKAGECONFIG[programs] = "--enable-programs,--disable-programs"
32PACKAGECONFIG[convert] = "--enable-convert --with-convert=ext2,--disable-convert --without-convert,e2fsprogs"
33PACKAGECONFIG[zoned] = "--enable-zoned,--disable-zoned"
34PACKAGECONFIG[python] = "--enable-python,--disable-python,python3-setuptools-native"
35PACKAGECONFIG[lzo] = "--enable-lzo,--disable-lzo,lzo"
36PACKAGECONFIG[zstd] = "--enable-zstd,--disable-zstd,zstd"
37PACKAGECONFIG[udev] = "--enable-libudev,--disable-libudev,udev"
38
39# Pick only one crypto provider
40PACKAGECONFIG[crypto-builtin] = "--with-crypto=builtin"
41PACKAGECONFIG[crypto-libgcrypt] = "--with-crypto=libgcrypt,,libgcrypt"
42PACKAGECONFIG[crypto-libsodium] = "--with-crypto=libsodium,,libsodium"
43PACKAGECONFIG[crypto-libkcapi] = "--with-crypto=libkcapi,,libkcapi"
44
45inherit autotools-brokensep pkgconfig manpages
46inherit ${@bb.utils.contains('PACKAGECONFIG', 'python', 'setuptools3-base', '', d)}
47
48CLEANBROKEN = "1"
49
50EXTRA_OECONF = "--enable-largefile"
51EXTRA_OECONF:append:libc-musl = " --disable-backtrace "
52EXTRA_PYTHON_CFLAGS = "${DEBUG_PREFIX_MAP}"
53EXTRA_PYTHON_CFLAGS:class-native = ""
54EXTRA_PYTHON_LDFLAGS = "${LDFLAGS}"
55EXTRA_OEMAKE = "V=1 'EXTRA_PYTHON_CFLAGS=${EXTRA_PYTHON_CFLAGS}' 'EXTRA_PYTHON_LDFLAGS=${EXTRA_PYTHON_LDFLAGS}'"
56
57do_configure:prepend() {
58 # Upstream doesn't ship this and autoreconf won't install it as automake isn't used.
59 mkdir -p ${S}/config
60 cp -f $(automake --print-libdir)/install-sh ${S}/config/
61}
62
63
64do_install:append() {
65 if [ "${@bb.utils.filter('PACKAGECONFIG', 'python', d)}" ]; then
66 oe_runmake 'DESTDIR=${D}' 'PYTHON_SITEPACKAGES_DIR=${PYTHON_SITEPACKAGES_DIR}' install_python
67 fi
68}
69
70RDEPENDS:${PN} = "libgcc"
71
72BBCLASSEXTEND = "native nativesdk"