[OpenWrt-Devel] [PATCH] busybox: ntpd - Add support for NTP servers received from DHCP

2016-01-25 Thread amine ahd
--- package/utils/busybox/files/sysntpd | 8 1 file changed, 8 insertions(+) diff --git a/package/utils/busybox/files/sysntpd b/package/utils/busybox/files/sysntpd index f73bb83..2e7a47d 100755 --- a/package/utils/busybox/files/sysntpd +++ b/package/utils/busybox/files/sysntpd @@ -15,6

[OpenWrt-Devel] [PATCH] busybox: sysntpd - use NTP servers received via DHCP

2016-01-20 Thread amine ahd
The current state of NTP is to load the list of NTP servers from the static file /etc/config/system. This patch allows ntpd to get NTP servers from DHCP. Changes from V1: -Users could choose not to use DHCP by setting "use_dhcp" to 0 in /etc/config/system under the ntp section. -

[OpenWrt-Devel] [PATCH] use NTP server received via DHCP

2016-01-20 Thread amine ahd
The current state of NTP is to load the list of NTP servers from the static file /etc/config/system. This patch allows ntpd to get NTP servers from DHCP. Changes from V1: -Users could choose not to use DHCP by setting "use_dhcp" to 0 in /etc/config/system under the ntp section. -

[OpenWrt-Devel] [PATCH] use NTP server received via DHCP

2016-01-19 Thread amine ahd
--- package/utils/busybox/Makefile | 3 ++ package/utils/busybox/files/sysntpd | 33 +++--- package/utils/busybox/files/sysntpd.hotplug | 54 + 3 files changed, 86 insertions(+), 4 deletions(-) create mode 100644 package/utils/busybox/

[OpenWrt-Devel] [PATCH 1/1] use NTP server received via DHCP

2016-01-14 Thread amine ahd
--- package/utils/busybox/Makefile | 3 ++ package/utils/busybox/files/sysntpd | 30 ++-- package/utils/busybox/files/sysntpd.hotplug | 53 + 3 files changed, 83 insertions(+), 3 deletions(-) create mode 100644 package/utils/busybox/fi

[OpenWrt-Devel] [PATCH 1/1] use NTP server received via DHCP

2016-01-12 Thread amine ahd
--- package/utils/busybox/Makefile | 3 ++ package/utils/busybox/files/sysntpd| 26 ++- package/utils/busybox/files/sysntpd.hotplug| 53 ++ 3 files changed, 80 insertions(+), 2 deletions(-) create mode 100755 package/utils/busybox/files/sysntpd

[OpenWrt-Devel] [PATCH] use NTP server received via DHCP

2015-12-22 Thread amine ahd
The current state of NTP is to load the list of NTP servers from the static file /etc/config/system. This patch allows ntpd to get NTP servers from DHCP. ntpd will restart whenever the list of NTP servers is changed. Signed-off-by: amine hamed --- package/utils/busybox/Makefile | 3