]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/lvm2/Config.in
Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS
[coffee/buildroot.git] / package / lvm2 / Config.in
1 config BR2_PACKAGE_LVM2
2         bool "lvm2 & device mapper"
3         depends on BR2_LARGEFILE
4         depends on BR2_TOOLCHAIN_HAS_THREADS
5         depends on BR2_USE_MMU # needs fork()
6         depends on !BR2_STATIC_LIBS # It fails to build statically
7         help
8           This is LVM2, the rewrite of The Linux Logical Volume Manager.
9           LVM supports enterprise level volume management of disk and disk
10           subsystems by grouping arbitrary disks into volume groups. The total
11           capacity of volume groups can be allocated to logical volumes, which
12           are accessed as regular block devices.
13
14           The Linux Kernel Device Mapper is the LVM
15           (Linux Logical Volume Management) Team's implementation of a
16           minimalistic kernel-space driver that handles volume management,
17           while keeping knowledge of the underlying device layout in
18           user-space. This makes it useful for not only LVM, but EVMS,
19           software raid, and other drivers that create "virtual" block devices.
20
21 if BR2_PACKAGE_LVM2
22
23 config BR2_PACKAGE_LVM2_STANDARD_INSTALL
24         bool "standard install instead of only dmsetup"
25         default y if !BR2_PACKAGE_LVM2_DMSETUP_ONLY # legacy 2013.11
26         help
27           Install the standard suite of lvm2 programs. When this option is not
28           set, only dmsetup is installed.
29
30 config BR2_PACKAGE_LVM2_APP_LIBRARY
31         bool "install application library"
32         select BR2_PACKAGE_LVM2_STANDARD_INSTALL
33         help
34           Install application library (liblvm2app).
35
36 endif
37
38 comment "lvm2 needs a toolchain w/ largefile, threads, dynamic library"
39         depends on BR2_USE_MMU
40         depends on !BR2_LARGEFILE || BR2_STATIC_LIBS || \
41                 !BR2_TOOLCHAIN_HAS_THREADS