1config 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 select BR2_PACKAGE_DBUS 8 select BR2_PACKAGE_DBUS_GLIB 9 select BR2_PACKAGE_LIBGLIB2 10 select BR2_PACKAGE_LIBSELINUX 11 select BR2_PACKAGE_LIBSEPOL 12 help 13 restorecond is a daemon that watches for file creation and 14 then sets the default SELinux file context for that file. 15 16 https://github.com/SELinuxProject/selinux/wiki/Releases 17 18comment "restorecond needs a toolchain w/ wchar, threads, dynamic library" 19 depends on BR2_USE_MMU 20 depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \ 21 BR2_STATIC_LIBS 22