diff options
author | Wade Berrier <wberrier@gmail.com> | 2008-11-06 21:11:54 +0000 |
---|---|---|
committer | Wade Berrier <wberrier@gmail.com> | 2008-11-06 21:11:54 +0000 |
commit | 8586e2a51b26afec2cecba1ba3c34ed35ae87743 (patch) | |
tree | b93b78c8435b5720dc364fbb351ccebead02404c /package/ntp/ntp.mk | |
parent | fd3bb17cbb87e2cbcc6dce5b70c87daa2904a95d (diff) | |
download | buildroot-novena-8586e2a51b26afec2cecba1ba3c34ed35ae87743.tar.gz buildroot-novena-8586e2a51b26afec2cecba1ba3c34ed35ae87743.zip |
ntp: add /etc/default/ntpd to control whether to start
ntpd and/or ntpdate. Also specify options and servers.
Diffstat (limited to 'package/ntp/ntp.mk')
-rw-r--r-- | package/ntp/ntp.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/ntp/ntp.mk b/package/ntp/ntp.mk index f4515fce9..d3c4c70aa 100644 --- a/package/ntp/ntp.mk +++ b/package/ntp/ntp.mk @@ -67,6 +67,10 @@ ifeq ($(BR2_PACKAGE_NTP_SNTP),y) install -m 755 $(NTP_DIR)/sntp/sntp $(TARGET_DIR)/usr/bin/sntp endif install -m 755 package/ntp/ntp.sysvinit $(TARGET_DIR)/etc/init.d/S49ntp + @if [ ! -f $(TARGET_DIR)/etc/default/ntpd ]; then \ + install -m 755 -d $(TARGET_DIR)/etc/default ; \ + install -m 644 package/ntp/ntpd.etc.default $(TARGET_DIR)/etc/default/ntpd ; \ + fi ntp: uclibc $(TARGET_DIR)/$(NTP_TARGET_BINARY) |