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