c0c15afff9
Thermal Daemon is a Linux daemon for monitoring and controlling platform temperatures. ./utils/test-pkg --package thermald --all 44 builds, 39 skipped, 0 build failed, 0 legal-info failed Signed-off-by: Ricardo Martincoski <ricardo.martincoski@datacom.com.br> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
852 B
Plaintext
24 lines
852 B
Plaintext
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
|