From: <abe...@us...> - 2016-04-28 21:08:17
|
Revision: 7657 http://sourceforge.net/p/astlinux/code/7657 Author: abelbeck Date: 2016-04-28 21:08:15 +0000 (Thu, 28 Apr 2016) Log Message: ----------- ntp, disable all clock sources except for LOCAL-CLOCK, and disable debugging, reduces ntpd binary size buy 30% Modified Paths: -------------- branches/1.0/package/ntp/ntp.mk Modified: branches/1.0/package/ntp/ntp.mk =================================================================== --- branches/1.0/package/ntp/ntp.mk 2016-04-28 03:13:45 UTC (rev 7656) +++ branches/1.0/package/ntp/ntp.mk 2016-04-28 21:08:15 UTC (rev 7657) @@ -12,9 +12,16 @@ --with-shared \ --program-transform-name=s,,, \ --with-yielding-select=yes \ - --enable-ipv6=no \ + --disable-debugging \ + --disable-ipv6 \ --without-ntpsnmpd +# Specify desired clocks +NTP_CONF_OPT += \ + --disable-all-clocks \ + --disable-parse-clocks \ + --enable-LOCAL-CLOCK + ifeq ($(BR2_PACKAGE_OPENSSL),y) NTP_CONF_OPT += --with-crypto NTP_DEPENDENCIES += openssl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |