Config.in 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. help
  7. This is LVM2, the rewrite of The Linux Logical Volume Manager.
  8. LVM supports enterprise level volume management of disk and disk
  9. subsystems by grouping arbitrary disks into volume groups. The total
  10. capacity of volume groups can be allocated to logical volumes, which
  11. are accessed as regular block devices.
  12. The Linux Kernel Device Mapper is the LVM
  13. (Linux Logical Volume Management) Team's implementation of a
  14. minimalistic kernel-space driver that handles volume management,
  15. while keeping knowledge of the underlying device layout in
  16. user-space. This makes it useful for not only LVM, but EVMS,
  17. software raid, and other drivers that create "virtual" block devices.
  18. if BR2_PACKAGE_LVM2
  19. config BR2_PACKAGE_LVM2_STANDARD_INSTALL
  20. bool "standard install instead of only dmsetup"
  21. default y if !BR2_PACKAGE_LVM2_DMSETUP_ONLY # legacy 2013.11
  22. help
  23. Install the standard suite of lvm2 programs. When this option is not
  24. set, only dmsetup is installed.
  25. config BR2_PACKAGE_LVM2_APP_LIBRARY
  26. bool "install application library"
  27. select BR2_PACKAGE_LVM2_STANDARD_INSTALL
  28. help
  29. Install application library (liblvm2app).
  30. endif
  31. comment "lvm2 needs a toolchain w/ threads, dynamic library"
  32. depends on BR2_USE_MMU
  33. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS