package/libblockdev: add support for swap 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:15 -07:00 committed by Thomas Petazzoni
parent 723b9a9d7d
commit 29db5b3aed
2 changed files with 12 additions and 1 deletions

View File

@ -57,6 +57,11 @@ config BR2_PACKAGE_LIBBLOCKDEV_PART
comment "part plugin needs a toolchain w/ locale"
depends on !BR2_ENABLE_LOCALE
config BR2_PACKAGE_LIBBLOCKDEV_SWAP
bool "swap"
select BR2_PACKAGE_UTIL_LINUX
select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
endif
comment "libblockdev needs udev /dev management and a toolchain w/ wchar, threads, dynamic library"

View File

@ -28,7 +28,6 @@ LIBBLOCKDEV_CONF_OPTS = \
--without-python2 \
--without-python3 \
--without-s390 \
--without-swap \
--without-tools \
--without-vdo
@ -73,4 +72,11 @@ else
LIBBLOCKDEV_CONF_OPTS += --without-part
endif
ifeq ($(BR2_PACKAGE_LIBBLOCKDEV_SWAP),y)
LIBBLOCKDEV_DEPENDENCIES += util-linux
LIBBLOCKDEV_CONF_OPTS += --with-swap
else
LIBBLOCKDEV_CONF_OPTS += --without-swap
endif
$(eval $(autotools-package))