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
|
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.
|
|
|
|
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.
|
|
|
|
|
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"
|
|
|
|
default y if !BR2_PACKAGE_LVM2_DMSETUP_ONLY # legacy 2013.11
|
2009-06-15 15:54:14 +02:00
|
|
|
help
|
2013-11-28 09:29:28 +01: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
|
|
|
|
2013-01-07 11:43:18 +01:00
|
|
|
config BR2_PACKAGE_LVM2_APP_LIBRARY
|
|
|
|
bool "install application library"
|
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).
|
|
|
|
|
2013-11-28 09:29:28 +01:00
|
|
|
endif
|
|
|
|
|
2015-03-30 23:07:30 +02:00
|
|
|
comment "lvm2 needs a toolchain w/ threads, dynamic library"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2015-03-30 23:07:30 +02:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|