mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 20:07:25 +00:00
7f17da1543
If we enable 'cryptsetup' PACKAGECONFIG for systemd, there would be circular dependency issue among 'systemd', 'cryptsetup' and 'lvm2'. cryptsetup only needs libdevmapper from lvm2. So we separte libdevmapper into a new recipe to solve this circular dependency issue. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
34 lines
1.6 KiB
PHP
34 lines
1.6 KiB
PHP
SECTION = "utils"
|
|
DESCRIPTION = "LVM2 is a set of utilities to manage logical volumes in Linux."
|
|
LICENSE = "GPLv2 & LGPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=12713b4d9386533feeb07d6e4831765a \
|
|
file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24"
|
|
|
|
DEPENDS += "util-linux"
|
|
|
|
SRC_URI = "ftp://sources.redhat.com/pub/lvm2/old/LVM2.${PV}.tgz \
|
|
file://lvm.conf \
|
|
file://0001-implement-libc-specific-reopen_stream.patch \
|
|
file://0002-Guard-use-of-mallinfo-with-__GLIBC__.patch \
|
|
file://0003-include-fcntl.h-for-O_-defines-and-fcntl-signature.patch \
|
|
file://0004-tweak-MODPROBE_CMD-for-cross-compile.patch \
|
|
file://0001-Avoid-bashisms-in-init-scripts.patch \
|
|
"
|
|
S = "${WORKDIR}/LVM2.${PV}"
|
|
|
|
inherit autotools-brokensep pkgconfig systemd
|
|
|
|
# odirect is always enabled because there currently is a bug in
|
|
# lib/device/dev-io.c which prevents compiling without it. It is
|
|
# better to stick to configurations that were actually tested by
|
|
# upstream...
|
|
PACKAGECONFIG_append = " odirect"
|
|
|
|
PACKAGECONFIG[dmeventd] = "--enable-dmeventd,--disable-dmeventd"
|
|
PACKAGECONFIG[lvmetad] = "--enable-lvmetad,--disable-lvmetad"
|
|
PACKAGECONFIG[odirect] = "--enable-o_direct,--disable-o_direct"
|
|
PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline"
|
|
PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux"
|
|
PACKAGECONFIG[thin-provisioning-tools] = "--with-thin=internal,--with-thin=none,,thin-provisioning-tools"
|
|
PACKAGECONFIG[udev] = "--enable-udev_sync --enable-udev_rules --with-udevdir=${nonarch_base_libdir}/udev/rules.d,--disable-udev_sync --disable-udev_rules,udev"
|