2fb55340ef
Commit 56d9b88768
forgot to add gcc >= 5
dependency
Fixes:
- No autobuilder failures (yet)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
comment "policycoreutils needs a toolchain w/ threads, dynamic library, gcc >= 5"
|
|
depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
|
|
|
config BR2_PACKAGE_POLICYCOREUTILS
|
|
bool "policycoreutils"
|
|
depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS # libsemanage
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libsemanage
|
|
depends on !BR2_STATIC_LIBS # libsemanage
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # libsemanage -> libselinux -> libsepol
|
|
select BR2_PACKAGE_LIBSEMANAGE
|
|
select BR2_PACKAGE_LIBCAP_NG
|
|
help
|
|
Policycoreutils is a collection of policy utilities
|
|
(originally the "core" set of utilities needed to use
|
|
SELinux, although it has grown a bit over time), which have
|
|
different dependencies. sestatus, secon, run_init, and
|
|
newrole only use libselinux. load_policy and setfiles only
|
|
use libselinux and libsepol. semodule and semanage use
|
|
libsemanage (and thus bring in dependencies on libsepol and
|
|
libselinux as well). setsebool uses libselinux to make
|
|
non-persistent boolean changes (via the kernel interface)
|
|
and uses libsemanage to make persistent boolean changes.
|
|
|
|
The base package will install the following utilities:
|
|
load_policy
|
|
newrole
|
|
run_init
|
|
secon
|
|
semodule
|
|
sestatus
|
|
setfiles
|
|
setsebool
|
|
|
|
http://selinuxproject.org/page/Main_Page
|