1config BR2_PACKAGE_SEMODULE_UTILS 2 bool "semodule-utils" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # libsepol 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # libsepol 5 select BR2_PACKAGE_LIBSEPOL 6 help 7 semodule-utils is a package that contains tools for handling 8 selinux modules. 9 10 The package will install the following utilities: 11 * semodule_deps - Show the dependencies between SELinux 12 policy packages. 13 * semodule_expand - Expand a SELinux policy module package. 14 * semodule_link - Link SELinux policy module packages together 15 * semodule_package - Create a SELinux policy module package. 16 17 https://github.com/SELinuxProject/selinux/wiki/Releases 18 19comment "semodule-utils needs a toolchain w/ threads, gcc >= 5" 20 depends on !BR2_TOOLCHAIN_HAS_THREADS || \ 21 !BR2_TOOLCHAIN_GCC_AT_LEAST_5 22