Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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_USE_WCHAR # upower -> libgudev
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. depends on BR2_TOOLCHAIN_HAS_THREADS # dbus-glib -> glib2, dbus, upower
  8. depends on BR2_USE_WCHAR # dbus-glib -> glib2
  9. depends on BR2_PACKAGE_HAS_UDEV # upower
  10. select BR2_PACKAGE_DBUS
  11. select BR2_PACKAGE_DBUS_GLIB
  12. select BR2_PACKAGE_LIBEVDEV
  13. select BR2_PACKAGE_LIBXML2
  14. select BR2_PACKAGE_UPOWER
  15. select BR2_PACKAGE_XZ
  16. help
  17. Thermal Daemon is a Linux daemon for monitoring and
  18. controlling platform temperatures. Once the system temperature
  19. reaches a certain threshold, the Linux daemon activates
  20. various cooling methods to try to cool the system.
  21. https://github.com/intel/thermal_daemon
  22. comment "thermald needs a toolchain w/ C++, wchar, threads"
  23. depends on BR2_i386 || BR2_x86_64
  24. depends on BR2_USE_MMU
  25. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  26. !BR2_INSTALL_LIBSTDCPP
  27. comment "thermald needs udev /dev management"
  28. depends on BR2_i386 || BR2_x86_64
  29. depends on BR2_USE_MMU
  30. depends on !BR2_PACKAGE_HAS_UDEV