diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-11-13 18:10:41 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-11-13 18:10:41 +0100 |
commit | 5366aa37eca50b97c477d423f3417c6f4a504f8f (patch) | |
tree | d937815dec127df8476acae2938b42f9aad050da /package | |
parent | 26bc6c9fe57e4e516cd4f3a6d133ceea84a1a9c3 (diff) |
busybox: fix blocking ntpd when DNS isn't available
Diffstat (limited to 'package')
-rw-r--r-- | package/busybox/Makefile | 2 | ||||
-rw-r--r-- | package/busybox/files/ntpd.init | 2 |
2 files changed, 2 insertions, 2 deletions
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) |