blob: 43356c9cd5235528b2589f07b483877c1488ea5f [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001HOMEPAGE = "https://www.sourceware.org/lvm2/"
Patrick Williamsb48b7b42016-08-17 15:04:38 -05002SECTION = "utils"
3DESCRIPTION = "LVM2 is a set of utilities to manage logical volumes in Linux."
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08004LICENSE = "GPLv2 & LGPLv2.1"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05005LIC_FILES_CHKSUM = "file://COPYING;md5=12713b4d9386533feeb07d6e4831765a \
Patrick Williamsb48b7b42016-08-17 15:04:38 -05006 file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24"
7
Brad Bishop665fd022019-08-26 01:32:28 -04008DEPENDS += "libaio"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05009
Andrew Geissler4b7c1152020-11-30 19:55:29 -060010SRC_URI = "git://sourceware.org/git/lvm2.git;branch=main \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050011 file://lvm.conf \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050012 file://0001-implement-libc-specific-reopen_stream.patch \
13 file://0002-Guard-use-of-mallinfo-with-__GLIBC__.patch \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050014 file://0004-tweak-MODPROBE_CMD-for-cross-compile.patch \
15 file://0001-Avoid-bashisms-in-init-scripts.patch \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016 file://0005-do-not-build-manual.patch \
17 file://0006-start-lvm2-monitor.service-after-tmp.mount.patch \
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -050018 file://reproducible-build.patch \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050019 "
Andrew Geissler748a4832020-07-24 16:24:21 -050020
Andrew Geissler97771a32021-03-05 15:23:11 -060021SRCREV = "3e8bd8d1bd70691f09a170785836aeb4f83154e6"
Brad Bishop6a62e0e2019-10-21 08:11:42 -040022S = "${WORKDIR}/git"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050023
Andrew Geisslerf103a7f2021-05-07 16:09:40 -050024inherit autotools-brokensep pkgconfig systemd
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025
Brad Bishop19323692019-04-05 15:28:33 -040026LVM2_PACKAGECONFIG = "dmeventd"
Patrick Williams213cb262021-08-07 19:21:33 -050027LVM2_PACKAGECONFIG:append:class-target = " \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028 ${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)} \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050029"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050030
Brad Bishop6e60e8b2018-02-01 10:27:11 -050031# odirect is always enabled because there currently is a bug in
32# lib/device/dev-io.c which prevents compiling without it. It is
33# better to stick to configurations that were actually tested by
34# upstream...
Brad Bishopd7bf8c12018-02-25 22:55:05 -050035PACKAGECONFIG ??= "odirect ${LVM2_PACKAGECONFIG}"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050036
Brad Bishop6e60e8b2018-02-01 10:27:11 -050037PACKAGECONFIG[dmeventd] = "--enable-dmeventd,--disable-dmeventd"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050038PACKAGECONFIG[odirect] = "--enable-o_direct,--disable-o_direct"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050039PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline"
40PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux"
Andrew Geisslerf103a7f2021-05-07 16:09:40 -050041# NOTE: Add thin-provisioning-tools only if your distro policy allows GPL-3.0 license
Patrick Williamsddad1a12017-02-23 20:36:32 -060042PACKAGECONFIG[thin-provisioning-tools] = "--with-thin=internal,--with-thin=none,,thin-provisioning-tools"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050043
44# Unset user/group to unbreak install.
45EXTRA_OECONF = "--with-user= \
46 --with-group= \
47 --enable-realtime \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050048 --enable-cmdlib \
49 --enable-pkgconfig \
50 --with-usrlibdir=${libdir} \
51 --with-systemdsystemunitdir=${systemd_system_unitdir} \
52 --disable-thin_check_needs_check \
53 --with-thin-check=${sbindir}/thin_check \
54 --with-thin-dump=${sbindir}/thin_dump \
55 --with-thin-repair=${sbindir}/thin_repair \
56 --with-thin-restore=${sbindir}/thin_restore \
57"