Commit 0ae1ab3e authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

openntpd: bump to version 5.7p1



Also:

* Add hash file
* Tweak the initscript to use a pidfile to avoid nasty warnings

Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 86ebf802
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
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;
 	}
+6 −0
Original line number Diff line number Diff line
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
+2 −2
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
# From http://www.openntpd.org/txt/release-5.7p1.txt
sha256	071cfdcfc179c481568a2b8262945243a3123abfc7fa8831da1bbff3729b8307	openntpd-5.7p1.tar.gz
+2 −3
Original line number Diff line number Diff line
@@ -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