Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
bool "mdraid"
select BR2_PACKAGE_LIBBYTESIZE
+config BR2_PACKAGE_LIBBLOCKDEV_PART
+ bool "part"
+ depends on BR2_ENABLE_LOCALE # parted
+ select BR2_PACKAGE_PARTED
+
+comment "part 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"
--without-lvm_dbus \
--without-mpath \
--without-nvdimm \
- --without-part \
--without-python2 \
--without-python3 \
--without-s390 \
LIBBLOCKDEV_CONF_OPTS += --without-mdraid
endif
+ifeq ($(BR2_PACKAGE_LIBBLOCKDEV_PART),y)
+LIBBLOCKDEV_DEPENDENCIES += parted
+LIBBLOCKDEV_CONF_OPTS += --with-part
+else
+LIBBLOCKDEV_CONF_OPTS += --without-part
+endif
+
$(eval $(autotools-package))