Config.in 1.3 KB

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