8b80150d13
Now that the libcap package has a patch that makes it build with kernel headers < 3.0 (which was needed for the host variant of libcap), there is no longer a need to have a dependency on headers >= 3.0 for the target variant of libcap. All reverse dependencies of libcap are handled in this commit, except lxc, which will be handled in a separate commit since it needs some special solution. The build of all those packages has been tested with a toolchain that uses kernel headers 2.6.32, which is the oldest that our default glibc version accepts to use. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
751 B
Plaintext
25 lines
751 B
Plaintext
config BR2_PACKAGE_LIBCAP
|
|
bool "libcap"
|
|
help
|
|
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.
|
|
|
|
http://sites.google.com/site/fullycapable/
|
|
|
|
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
|