mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-12 06:43:43 +08:00
openntpd: bump to version 5.7p1
Also: * Add hash file * Tweak the initscript to use a pidfile to avoid nasty warnings Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
86ebf8026c
commit
0ae1ab3ed5
36
package/openntpd/0001-switch-ntp_adjtime-to-adjtimex.patch
Normal file
36
package/openntpd/0001-switch-ntp_adjtime-to-adjtimex.patch
Normal file
@ -0,0 +1,36 @@
|
||||
uClibc considers ntp_* functions deprecated and only enabled via
|
||||
UCLIBC_NTP_LEGACY which isn't the default or in BR configs so switch
|
||||
to adjtimex which is basically the same.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
|
||||
diff -Nura openntpd-5.7p1.orig/compat/adjfreq_linux.c openntpd-5.7p1/compat/adjfreq_linux.c
|
||||
--- openntpd-5.7p1.orig/compat/adjfreq_linux.c 2015-01-08 19:45:15.482915628 -0300
|
||||
+++ openntpd-5.7p1/compat/adjfreq_linux.c 2015-01-08 19:45:50.972864070 -0300
|
||||
@@ -37,20 +37,20 @@
|
||||
txc.modes = ADJ_FREQUENCY;
|
||||
txc.freq = *freq / 1e3 / (1LL << 16);
|
||||
|
||||
- if ((ntp_adjtime(&txc)) == -1)
|
||||
- log_warn("ntp_adjtime (2) failed");
|
||||
+ if ((adjtimex(&txc)) == -1)
|
||||
+ log_warn("adjtimex (2) failed");
|
||||
|
||||
- log_debug("ntp_adjtime adjusted frequency by %fppm",
|
||||
+ log_debug("adjtimex adjusted frequency by %fppm",
|
||||
((txc.freq * 1e3) * (1LL<<16) / 1e3 / (1LL << 32)));
|
||||
}
|
||||
if (oldfreq != NULL) {
|
||||
txc.modes = 0;
|
||||
- if ((ntp_adjtime(&txc)) == -1) {
|
||||
- log_warn("ntp_adjtime (1) failed");
|
||||
+ if ((adjtimex(&txc)) == -1) {
|
||||
+ log_warn("adjtimex (1) failed");
|
||||
return -1;
|
||||
}
|
||||
newfreq = (txc.freq * 1e3) * (1LL<<16);
|
||||
- log_debug("ntp_adjtime returns frequency of %fppm",
|
||||
+ log_debug("adjtimex returns frequency of %fppm",
|
||||
newfreq / 1e3 / (1LL << 32));
|
||||
*oldfreq = newfreq;
|
||||
}
|
@ -1,5 +1,7 @@
|
||||
config BR2_PACKAGE_OPENNTPD
|
||||
bool "openntpd"
|
||||
depends on BR2_INET_IPV6
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork ()
|
||||
depends on !BR2_PACKAGE_NTP # conflicting binaries
|
||||
help
|
||||
@ -9,3 +11,7 @@ config BR2_PACKAGE_OPENNTPD
|
||||
redistributing the local clock. It just works.
|
||||
|
||||
http://www.openntpd.org/
|
||||
|
||||
comment "openntpd needs a toolchain w/ threads, IPv6"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
@ -6,12 +6,12 @@
|
||||
case "$1" in
|
||||
start)
|
||||
echo -n "Starting openntpd: "
|
||||
start-stop-daemon -S -x /usr/sbin/ntpd
|
||||
start-stop-daemon -S -x /usr/sbin/ntpd -- -p /run/ntpd.pid
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
;;
|
||||
stop)
|
||||
echo -n "Stopping openntpd: "
|
||||
start-stop-daemon -K -x /usr/sbin/ntpd
|
||||
start-stop-daemon -K -q -p /run/ntpd.pid
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
;;
|
||||
restart)
|
||||
|
2
package/openntpd/openntpd.hash
Normal file
2
package/openntpd/openntpd.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# From http://www.openntpd.org/txt/release-5.7p1.txt
|
||||
sha256 071cfdcfc179c481568a2b8262945243a3123abfc7fa8831da1bbff3729b8307 openntpd-5.7p1.tar.gz
|
@ -4,9 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPENNTPD_VERSION = 3.9p1
|
||||
OPENNTPD_SITE = ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD
|
||||
OPENNTPD_CONF_OPTS = --with-builtin-arc4random --disable-strip
|
||||
OPENNTPD_VERSION = 5.7p1
|
||||
OPENNTPD_SITE = http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD
|
||||
OPENNTPD_LICENSE = MIT-like, BSD-2c, BSD-3c
|
||||
OPENNTPD_LICENSE_FILES = LICENCE
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user