2005-06-24 04:46:31 +02:00
|
|
|
config BR2_PACKAGE_LVM2
|
2009-06-15 15:54:14 +02:00
|
|
|
bool "lvm2 & device mapper"
|
2014-03-17 22:46:53 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2013-02-05 09:00:22 +01:00
|
|
|
depends on BR2_USE_MMU # needs fork()
|
2014-12-03 22:41:29 +01:00
|
|
|
depends on !BR2_STATIC_LIBS # It fails to build statically
|
2018-07-26 19:15:24 +02:00
|
|
|
select BR2_PACKAGE_LIBAIO
|
2005-06-24 04:46:31 +02:00
|
|
|
help
|
2009-06-15 15:54:14 +02:00
|
|
|
This is LVM2, the rewrite of The Linux Logical Volume Manager.
|
2017-07-31 15:53:49 +02:00
|
|
|
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.
|
2009-06-15 15:54:14 +02:00
|
|
|
|
|
|
|
The Linux Kernel Device Mapper is the LVM
|
|
|
|
(Linux Logical Volume Management) Team's implementation of a
|
2017-07-31 15:53:49 +02:00
|
|
|
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.
|
2009-06-15 15:54:14 +02:00
|
|
|
|
2017-03-29 17:19:34 +02:00
|
|
|
http://www.sourceware.org/lvm2/
|
|
|
|
|
2013-11-28 09:29:28 +01:00
|
|
|
if BR2_PACKAGE_LVM2
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LVM2_STANDARD_INSTALL
|
|
|
|
bool "standard install instead of only dmsetup"
|
2017-12-18 09:24:38 +01:00
|
|
|
default y if !BR2_PACKAGE_LVM2_DMSETUP_ONLY # legacy 2013.11
|
2017-10-27 13:47:16 +02:00
|
|
|
# http://lists.busybox.net/pipermail/buildroot/2016-August/170592.html
|
|
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
2009-06-15 15:54:14 +02:00
|
|
|
help
|
2017-07-31 15:53:49 +02:00
|
|
|
Install the standard suite of lvm2 programs. When this option
|
|
|
|
is not set, only dmsetup is installed.
|
2009-06-15 15:54:14 +02:00
|
|
|
|
2017-10-27 13:47:16 +02:00
|
|
|
comment "lvm2 standard install needs a glibc or uClibc toolchain"
|
|
|
|
depends on BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
|
2013-01-07 11:43:18 +01:00
|
|
|
config BR2_PACKAGE_LVM2_APP_LIBRARY
|
|
|
|
bool "install application library"
|
2017-10-27 13:47:16 +02:00
|
|
|
# http://lists.busybox.net/pipermail/buildroot/2016-August/170592.html
|
|
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
2013-11-28 09:29:28 +01:00
|
|
|
select BR2_PACKAGE_LVM2_STANDARD_INSTALL
|
2013-01-07 11:43:18 +01:00
|
|
|
help
|
|
|
|
Install application library (liblvm2app).
|
|
|
|
|
2017-10-27 13:47:16 +02:00
|
|
|
comment "lvm2 application library needs a glibc or uClibc toolchain"
|
|
|
|
depends on BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
|
2013-11-28 09:29:28 +01:00
|
|
|
endif
|
|
|
|
|
2017-10-27 13:47:16 +02:00
|
|
|
comment "lvm2 needs a toolchain w/ threads, dynamic library"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2017-10-27 13:47:16 +02:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|