Config.in 806 B

123456789101112131415161718192021
  1. config 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. The package will install the following utilities:
  10. * semodule_deps - Show the dependencies between SELinux
  11. policy packages.
  12. * semodule_expand - Expand a SELinux policy module package.
  13. * semodule_link - Link SELinux policy module packages together
  14. * semodule_package - Create a SELinux policy module package.
  15. https://github.com/SELinuxProject/selinux/wiki/Releases
  16. comment "semodule-utils needs a toolchain w/ threads, gcc >= 5"
  17. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  18. !BR2_TOOLCHAIN_GCC_AT_LEAST_5