Config.in 852 B

1234567891011121314151617181920212223
  1. config 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. https://01.org/linux-thermal-daemon
  17. comment "thermald needs a toolchain w/ C++, wchar, threads"
  18. depends on BR2_i386 || BR2_x86_64
  19. depends on BR2_USE_MMU
  20. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  21. !BR2_INSTALL_LIBSTDCPP