package/libblockdev: add support for fs 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:10 -07:00 committed by Thomas Petazzoni
parent ebf2949aaf
commit 445813d8cc
2 changed files with 15 additions and 1 deletions

View File

@ -25,6 +25,14 @@ config BR2_PACKAGE_LIBBLOCKDEV_CRYPTO
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # cryptsetup -> json-c
select BR2_PACKAGE_CRYPTSETUP
config BR2_PACKAGE_LIBBLOCKDEV_FS
bool "filesystem"
depends on BR2_ENABLE_LOCALE # parted
select BR2_PACKAGE_PARTED
comment "filesystem plugin 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

@ -21,7 +21,6 @@ LIBBLOCKDEV_CONF_OPTS = \
--without-dm \
--without-dmraid \
--without-escrow \
--without-fs \
--without-kbd \
--without-loop \
--without-lvm \
@ -44,4 +43,11 @@ else
LIBBLOCKDEV_CONF_OPTS += --without-crypto
endif
ifeq ($(BR2_PACKAGE_LIBBLOCKDEV_FS),y)
LIBBLOCKDEV_DEPENDENCIES += parted
LIBBLOCKDEV_CONF_OPTS += --with-fs
else
LIBBLOCKDEV_CONF_OPTS += --without-fs
endif
$(eval $(autotools-package))