Config.in 822 B

12345678910111213141516171819202122
  1. config BR2_PACKAGE_RESTORECOND
  2. bool "restorecond"
  3. depends on BR2_USE_MMU # libglib2
  4. depends on BR2_USE_WCHAR # libglib2
  5. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
  6. depends on !BR2_STATIC_LIBS # libselinux
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # libsepol
  8. select BR2_PACKAGE_DBUS
  9. select BR2_PACKAGE_DBUS_GLIB
  10. select BR2_PACKAGE_LIBGLIB2
  11. select BR2_PACKAGE_LIBSELINUX
  12. select BR2_PACKAGE_LIBSEPOL
  13. help
  14. restorecond is a daemon that watches for file creation and
  15. then sets the default SELinux file context for that file.
  16. https://github.com/SELinuxProject/selinux/wiki/Releases
  17. comment "restorecond needs a toolchain w/ wchar, threads, dynamic library, gcc >= 5"
  18. depends on BR2_USE_MMU
  19. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
  20. BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_5