1config BR2_PACKAGE_THERMALD 2 bool "thermald" 3 depends on BR2_i386 || BR2_x86_64 # needs <cpuid.h> 4 depends on BR2_USE_MMU # uses fork() 5 depends on BR2_INSTALL_LIBSTDCPP 6 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus-glib -> glib2, dbus 7 depends on BR2_USE_WCHAR # dbus-glib -> glib2 8 select BR2_PACKAGE_DBUS 9 select BR2_PACKAGE_DBUS_GLIB 10 select BR2_PACKAGE_LIBXML2 11 help 12 Thermal Daemon is a Linux daemon for monitoring and 13 controlling platform temperatures. Once the system temperature 14 reaches a certain threshold, the Linux daemon activates 15 various cooling methods to try to cool the system. 16 17 https://01.org/linux-thermal-daemon 18 19comment "thermald needs a toolchain w/ C++, wchar, threads" 20 depends on BR2_i386 || BR2_x86_64 21 depends on BR2_USE_MMU 22 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 23 !BR2_INSTALL_LIBSTDCPP 24