e62db6c7cc
- Switch site to get latest release
- Switch to meson-package (autotools dropped since version 0.99.14)
- libusb is not a dependency since
64582256a8
- Update indentation in hash file (two spaces)
https://gitlab.freedesktop.org/upower/upower/-/blob/v0.99.19/NEWS
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Peter: also update thermald dependencies]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
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_USE_WCHAR # upower -> libgudev
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus-glib -> glib2, dbus, upower
|
|
depends on BR2_USE_WCHAR # dbus-glib -> glib2
|
|
depends on BR2_PACKAGE_HAS_UDEV # upower
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_DBUS_GLIB
|
|
select BR2_PACKAGE_LIBEVDEV
|
|
select BR2_PACKAGE_LIBXML2
|
|
select BR2_PACKAGE_UPOWER
|
|
select BR2_PACKAGE_XZ
|
|
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://github.com/intel/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
|
|
|
|
comment "thermald needs udev /dev management"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_PACKAGE_HAS_UDEV
|