1config BR2_PACKAGE_LIBCGROUP 2 bool "libcgroup" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 select BR2_PACKAGE_MUSL_FTS if !BR2_TOOLCHAIN_USES_GLIBC 6 help 7 libcgroup is a library that abstracts the control 8 group file system in Linux. 9 10 http://libcg.sourceforge.net/ 11 12if BR2_PACKAGE_LIBCGROUP 13 14config BR2_PACKAGE_LIBCGROUP_TOOLS 15 bool "install tools" 16 help 17 Include a set of command-line tools for managing cgroups. 18 19endif 20 21comment "libcgroup needs a toolchain w/ C++, threads" 22 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS 23