package/libblockdev: add support for lvm plugin

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Adam Duskett 2020-07-25 16:06:12 -07:00 committed by Thomas Petazzoni
parent 63759893f7
commit 05c46e723a
2 changed files with 16 additions and 1 deletions

View File

@ -36,6 +36,15 @@ comment "filesystem plugin needs a toolchain w/ locale"
config BR2_PACKAGE_LIBBLOCKDEV_LOOP
bool "loop"
config BR2_PACKAGE_LIBBLOCKDEV_LVM2
bool "lvm2"
depends on BR2_ENABLE_LOCALE # parted
select BR2_PACKAGE_PARTED
select BR2_PACKAGE_LVM2
comment "lvm2 support needs a toolchain w/ locale"
depends on !BR2_ENABLE_LOCALE
endif
comment "libblockdev needs udev /dev management and a toolchain w/ wchar, threads, dynamic library"

View File

@ -22,7 +22,6 @@ LIBBLOCKDEV_CONF_OPTS = \
--without-dmraid \
--without-escrow \
--without-kbd \
--without-lvm \
--without-lvm_dbus \
--without-mdraid \
--without-mpath \
@ -55,4 +54,11 @@ else
LIBBLOCKDEV_CONF_OPTS += --without-loop
endif
ifeq ($(BR2_PACKAGE_LIBBLOCKDEV_LVM2),y)
LIBBLOCKDEV_DEPENDENCIES += lvm2 parted
LIBBLOCKDEV_CONF_OPTS += --with-lvm
else
LIBBLOCKDEV_CONF_OPTS += --without-lvm
endif
$(eval $(autotools-package))