Files
buildroot/package/chrony/Config.in
Scott Fan 6c80b71c8c package/chrony: bump to version 4.7
Release notes: https://chrony-project.org/news.html

Since this release, building without POSIX threads is no longer supported.
So add a depends on BR2_TOOLCHAIN_HAS_THREADS.

Signed-off-by: Scott Fan <fancp2007@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-07-14 15:18:08 +02:00

26 lines
644 B
Plaintext

config BR2_PACKAGE_CHRONY
bool "chrony"
depends on BR2_USE_MMU # fork()
depends on BR2_TOOLCHAIN_HAS_THREADS
select BR2_PACKAGE_LIBCAP
help
Chrony is a pair of programs which are used to maintain the
accuracy of the system clock.
https://chrony-project.org/
if BR2_PACKAGE_CHRONY
config BR2_PACKAGE_CHRONY_DEBUG_LOGGING
bool "enable debug logging support"
help
Enable support for debug logging output from Chrony when
enabled at runtime. If disabled, code for debug logging will
not be compiled in.
endif
comment "chrony needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS