2010-03-02 22:47:13 +01:00
|
|
|
config BR2_PACKAGE_LIBCAP
|
|
|
|
bool "libcap"
|
2014-11-16 12:04:47 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # XATTR_NAME_CAPS
|
2010-03-02 22:47:13 +01:00
|
|
|
help
|
2013-11-11 17:23:23 +01:00
|
|
|
This library implements the user-space interfaces to the
|
|
|
|
POSIX 1003.1e capabilities available in Linux kernels. These
|
|
|
|
capabilities are a partitioning of the all powerful root
|
|
|
|
privilege into a set of distinct privileges.
|
2010-03-02 22:47:13 +01:00
|
|
|
|
2013-11-11 17:23:23 +01:00
|
|
|
http://sites.google.com/site/fullycapable/
|
2014-04-20 21:30:13 +02:00
|
|
|
|
|
|
|
if BR2_PACKAGE_LIBCAP
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBCAP_TOOLS
|
|
|
|
bool "install tools"
|
|
|
|
depends on BR2_USE_MMU
|
|
|
|
help
|
|
|
|
Install setcap, getcap, getpcaps and capsh tools.
|
|
|
|
|
|
|
|
For these tools to run properly, you should enable, in your
|
|
|
|
kernel configuration, extended file attributes/security labels
|
|
|
|
support for the file system type used on target system (e.g.
|
|
|
|
CONFIG_EXT2_FS_XATTR and CONFIG_EXT2_FS_SECURITY for ext2).
|
|
|
|
|
|
|
|
endif
|
2014-11-16 12:04:47 +01:00
|
|
|
|
|
|
|
comment "libcap needs a toolchain w/ headers >= 3.0"
|
|
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
|