1 config BR2_PACKAGE_LVM2
2 bool "lvm2 & device mapper"
3 depends on BR2_TOOLCHAIN_HAS_THREADS
4 depends on BR2_USE_MMU # needs fork()
5 depends on !BR2_STATIC_LIBS # It fails to build statically
6 # http://lists.busybox.net/pipermail/buildroot/2016-August/170592.html
7 depends on !BR2_TOOLCHAIN_USES_MUSL
9 This is LVM2, the rewrite of The Linux Logical Volume Manager.
10 LVM supports enterprise level volume management of disk and disk
11 subsystems by grouping arbitrary disks into volume groups. The total
12 capacity of volume groups can be allocated to logical volumes, which
13 are accessed as regular block devices.
15 The Linux Kernel Device Mapper is the LVM
16 (Linux Logical Volume Management) Team's implementation of a
17 minimalistic kernel-space driver that handles volume management,
18 while keeping knowledge of the underlying device layout in
19 user-space. This makes it useful for not only LVM, but EVMS,
20 software raid, and other drivers that create "virtual" block devices.
24 config BR2_PACKAGE_LVM2_STANDARD_INSTALL
25 bool "standard install instead of only dmsetup"
26 default y if !BR2_PACKAGE_LVM2_DMSETUP_ONLY # legacy 2013.11
28 Install the standard suite of lvm2 programs. When this option is not
29 set, only dmsetup is installed.
31 config BR2_PACKAGE_LVM2_APP_LIBRARY
32 bool "install application library"
33 select BR2_PACKAGE_LVM2_STANDARD_INSTALL
35 Install application library (liblvm2app).
39 comment "lvm2 needs a glibc or uClibc toolchain w/ threads, dynamic library"
40 depends on BR2_USE_MMU
41 depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL