From 5366aa37eca50b97c477d423f3417c6f4a504f8f Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 13 Nov 2016 18:10:41 +0100 Subject: busybox: fix blocking ntpd when DNS isn't available --- package/busybox/Makefile | 2 +- package/busybox/files/ntpd.init | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'package/busybox') diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 560cb98c8..76e575848 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= busybox PKG_VERSION:= 1.25.0 -PKG_RELEASE:= 2 +PKG_RELEASE:= 3 PKG_HASH:= 5a0fe06885ee1b805fb459ab6aaa023fe4f2eccee4fb8c0fd9a6c17c0daca2fc PKG_DESCR:= core utilities for embedded systems PKG_SECTION:= base/apps diff --git a/package/busybox/files/ntpd.init b/package/busybox/files/ntpd.init index c79d6c4bd..15c460dcc 100644 --- a/package/busybox/files/ntpd.init +++ b/package/busybox/files/ntpd.init @@ -11,7 +11,7 @@ autostart) exec sh $0 start ;; start) - /usr/sbin/ntpd $ntpd_flags + /usr/sbin/ntpd $ntpd_flags >/dev/null 2>&1 & ;; stop) kill $(pgrep -f /usr/sbin/ntpd) -- cgit v1.2.3