blob: 6c95bfd02ee5d4a9082570320c11959ec87a72bd [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
Brad Bishop26bdd442019-08-16 17:08:17 -040010SRC_URI = "https://sourceware.org/pub/lvm2/LVM2.${PV}.tgz \
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 \
Brad Bishopa891d152019-09-13 06:17:45 -040018 file://0001-configure-Fix-setting-of-CLDFLAGS-default.patch \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050019 "
Brad Bishop19323692019-04-05 15:28:33 -040020SRC_URI[md5sum] = "5fc07da5461a3794a751dcfc355827d5"
21SRC_URI[sha256sum] = "550ba750239fd75b7e52c9877565cabffef506bbf6d7f6f17b9700dee56c720f"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080022
Patrick Williamsb48b7b42016-08-17 15:04:38 -050023S = "${WORKDIR}/LVM2.${PV}"
24
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025inherit autotools-brokensep pkgconfig systemd license
26
Brad Bishop19323692019-04-05 15:28:33 -040027LVM2_PACKAGECONFIG = "dmeventd"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028LVM2_PACKAGECONFIG_append_class-target = " \
29 ${@bb.utils.filter('DISTRO_FEATURES', 'selinux', d)} \
30 ${@incompatible_license_contains('GPLv3', '', 'thin-provisioning-tools', d)} \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050031"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050032
Brad Bishop6e60e8b2018-02-01 10:27:11 -050033# odirect is always enabled because there currently is a bug in
34# lib/device/dev-io.c which prevents compiling without it. It is
35# better to stick to configurations that were actually tested by
36# upstream...
Brad Bishopd7bf8c12018-02-25 22:55:05 -050037PACKAGECONFIG ??= "odirect ${LVM2_PACKAGECONFIG}"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050038
Brad Bishop6e60e8b2018-02-01 10:27:11 -050039PACKAGECONFIG[dmeventd] = "--enable-dmeventd,--disable-dmeventd"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050040PACKAGECONFIG[odirect] = "--enable-o_direct,--disable-o_direct"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050041PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline"
42PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux"
Patrick Williamsddad1a12017-02-23 20:36:32 -060043PACKAGECONFIG[thin-provisioning-tools] = "--with-thin=internal,--with-thin=none,,thin-provisioning-tools"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050044
45# Unset user/group to unbreak install.
46EXTRA_OECONF = "--with-user= \
47 --with-group= \
48 --enable-realtime \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050049 --enable-cmdlib \
50 --enable-pkgconfig \
51 --with-usrlibdir=${libdir} \
52 --with-systemdsystemunitdir=${systemd_system_unitdir} \
53 --disable-thin_check_needs_check \
54 --with-thin-check=${sbindir}/thin_check \
55 --with-thin-dump=${sbindir}/thin_dump \
56 --with-thin-repair=${sbindir}/thin_repair \
57 --with-thin-restore=${sbindir}/thin_restore \
58"
59