Config.in 761 B

123456789101112131415161718192021222324
  1. config BR2_PACKAGE_LIBCAP
  2. bool "libcap"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. This library implements the user-space interfaces to the
  6. POSIX 1003.1e capabilities available in Linux kernels. These
  7. capabilities are a partitioning of the all powerful root
  8. privilege into a set of distinct privileges.
  9. https://sites.google.com/site/fullycapable/
  10. if BR2_PACKAGE_LIBCAP
  11. config BR2_PACKAGE_LIBCAP_TOOLS
  12. bool "install tools"
  13. help
  14. Install setcap, getcap, getpcaps and capsh tools.
  15. For these tools to run properly, you should enable, in your
  16. kernel configuration, extended file attributes/security labels
  17. support for the file system type used on target system (e.g.
  18. CONFIG_EXT2_FS_XATTR and CONFIG_EXT2_FS_SECURITY for ext2).
  19. endif