0d243e4974
Commit 5a3f78c919
(libaio: bump to 0.3.111) removed the definition of
BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS, and most references. Remove a few
remaining references.
Fixes:
http://autobuild.buildroot.net/results/724/7244c23a0fbcf27547b5ea639d88033b5a7d9f39/
http://autobuild.buildroot.net/results/be4/be43983767e94ab5c64c3cb3de467840fd6635d2/
http://autobuild.buildroot.net/results/798/798a15a9a064d476927bb49bf534c427e9119c4e/
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
55 lines
1.9 KiB
Plaintext
55 lines
1.9 KiB
Plaintext
config BR2_PACKAGE_LVM2
|
|
bool "lvm2 & device mapper"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # needs fork()
|
|
depends on !BR2_STATIC_LIBS # It fails to build statically
|
|
select BR2_PACKAGE_LIBAIO
|
|
help
|
|
This is LVM2, the rewrite of The Linux Logical Volume Manager.
|
|
LVM supports enterprise level volume management of disk and
|
|
disk subsystems by grouping arbitrary disks into volume
|
|
groups. The total capacity of volume groups can be allocated
|
|
to logical volumes, which are accessed as regular block
|
|
devices.
|
|
|
|
The Linux Kernel Device Mapper is the LVM
|
|
(Linux Logical Volume Management) Team's implementation of a
|
|
minimalistic kernel-space driver that handles volume
|
|
management, while keeping knowledge of the underlying device
|
|
layout in user-space. This makes it useful for not only LVM,
|
|
but EVMS, software raid, and other drivers that create
|
|
"virtual" block devices.
|
|
|
|
http://www.sourceware.org/lvm2/
|
|
|
|
if BR2_PACKAGE_LVM2
|
|
|
|
config BR2_PACKAGE_LVM2_STANDARD_INSTALL
|
|
bool "standard install instead of only dmsetup"
|
|
default y if !BR2_PACKAGE_LVM2_DMSETUP_ONLY # legacy 2013.11
|
|
# http://lists.busybox.net/pipermail/buildroot/2016-August/170592.html
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
|
help
|
|
Install the standard suite of lvm2 programs. When this option
|
|
is not set, only dmsetup is installed.
|
|
|
|
comment "lvm2 standard install needs a glibc or uClibc toolchain"
|
|
depends on BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
config BR2_PACKAGE_LVM2_APP_LIBRARY
|
|
bool "install application library"
|
|
# http://lists.busybox.net/pipermail/buildroot/2016-August/170592.html
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
|
select BR2_PACKAGE_LVM2_STANDARD_INSTALL
|
|
help
|
|
Install application library (liblvm2app).
|
|
|
|
comment "lvm2 application library needs a glibc or uClibc toolchain"
|
|
depends on BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
endif
|
|
|
|
comment "lvm2 needs a toolchain w/ threads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|