Update buidlroot to version 2016.08.1
This commit is contained in:
@@ -19,6 +19,12 @@ config BR2_PACKAGE_NTP_NTP_KEYGEN
|
||||
help
|
||||
Create a NTP host key
|
||||
|
||||
config BR2_PACKAGE_NTP_NTP_SHM_CLK
|
||||
bool "SHM clock support"
|
||||
help
|
||||
Compile ntp with support for a SHM clock attached through
|
||||
shared memory.
|
||||
|
||||
config BR2_PACKAGE_NTP_NTP_WAIT
|
||||
bool "ntp-wait"
|
||||
depends on BR2_PACKAGE_PERL
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# From http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p6.tar.gz.md5
|
||||
md5 60049f51e9c8305afe30eb22b711c5c6 ntp-4.2.8p6.tar.gz
|
||||
# From http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p8.tar.gz.md5
|
||||
md5 4a8636260435b230636f053ffd070e34 ntp-4.2.8p8.tar.gz
|
||||
# Calculated based on the hash above
|
||||
sha256 583d0e1c573ace30a9c6afbea0fc52cae9c8c916dbc15c026e485a0dda4ba048 ntp-4.2.8p6.tar.gz
|
||||
sha256 2ab3d0b5f0456e6311dda1cc27ab75da108762773a19e46abd938bd9407b97ee ntp-4.2.8p8.tar.gz
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
################################################################################
|
||||
|
||||
NTP_VERSION_MAJOR = 4.2
|
||||
NTP_VERSION = $(NTP_VERSION_MAJOR).8p6
|
||||
NTP_VERSION = $(NTP_VERSION_MAJOR).8p8
|
||||
NTP_SITE = http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-$(NTP_VERSION_MAJOR)
|
||||
NTP_DEPENDENCIES = host-pkgconf libevent $(if $(BR2_PACKAGE_BUSYBOX),busybox)
|
||||
NTP_LICENSE = ntp license
|
||||
@@ -15,6 +15,7 @@ NTP_CONF_OPTS = \
|
||||
--with-shared \
|
||||
--program-transform-name=s,,, \
|
||||
--disable-tickadj \
|
||||
--disable-debugging \
|
||||
--with-yielding-select=yes \
|
||||
--disable-local-libevent
|
||||
# 0002-ntp-syscalls-fallback.patch
|
||||
@@ -42,6 +43,12 @@ else
|
||||
NTP_CONF_OPTS += --disable-ATOM
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NTP_NTP_SHM_CLK),y)
|
||||
NTP_CONF_OPTS += --enable-SHM
|
||||
else
|
||||
NTP_CONF_OPTS += --disable-SHM
|
||||
endif
|
||||
|
||||
NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_KEYGEN) += util/ntp-keygen
|
||||
NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_WAIT) += scripts/ntp-wait/ntp-wait
|
||||
NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTPDATE) += ntpdate/ntpdate
|
||||
|
||||
Reference in New Issue
Block a user