mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 05:36:32 +00:00
Replace ntpd with chrony
* /etc/init.d/S50date: use chrony instead of ntpd * Enable chrony * cleanups.sh: remove chrony init script
This commit is contained in:
parent
8fc517678c
commit
9f6a4021b5
@ -210,6 +210,7 @@ rm -f ${TARGET}/etc/init.d/S20urandom
|
|||||||
rm -f ${TARGET}/etc/init.d/S21rngd
|
rm -f ${TARGET}/etc/init.d/S21rngd
|
||||||
rm -f ${TARGET}/etc/init.d/S48sntp
|
rm -f ${TARGET}/etc/init.d/S48sntp
|
||||||
rm -f ${TARGET}/etc/init.d/S49ntp
|
rm -f ${TARGET}/etc/init.d/S49ntp
|
||||||
|
rm -f ${TARGET}/etc/init.d/S49chrony
|
||||||
rm -f ${TARGET}/etc/init.d/S50sshd
|
rm -f ${TARGET}/etc/init.d/S50sshd
|
||||||
rm -f ${TARGET}/etc/init.d/S50proftpd
|
rm -f ${TARGET}/etc/init.d/S50proftpd
|
||||||
rm -f ${TARGET}/etc/init.d/S50postgresql
|
rm -f ${TARGET}/etc/init.d/S50postgresql
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
PROG_DATE="/bin/date"
|
PROG_DATE="/bin/date"
|
||||||
PROG_NTPD="/usr/sbin/ntpd"
|
PROG_NTPD="/usr/sbin/chronyd"
|
||||||
PROG_SNTP="/usr/bin/sntp"
|
PROG_SNTP="/usr/bin/sntp"
|
||||||
LOG_SNTP="/var/log/sntp.log"
|
LOG_SNTP="/var/log/sntp.log"
|
||||||
|
|
||||||
@ -47,7 +47,11 @@ set_current_date_http() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
set_current_date_ntp() {
|
set_current_date_ntp() {
|
||||||
${PROG_NTPD} -gq &>/dev/null
|
if [[ -n "${DATE_NTP_SERVER}" ]]; then
|
||||||
|
sed -i "s/pool .*/pool ${DATE_NTP_SERVER} iburst/" ${NTP_CONF}
|
||||||
|
fi
|
||||||
|
|
||||||
|
${PROG_NTPD} -f ${NTP_CONF} -q -t ${DATE_TIMEOUT} &>/dev/null
|
||||||
if [[ $? == 0 ]]; then
|
if [[ $? == 0 ]]; then
|
||||||
logger -t date "current system date/time set to $(date) via NTP"
|
logger -t date "current system date/time set to $(date) via NTP"
|
||||||
return 0
|
return 0
|
||||||
@ -58,8 +62,8 @@ set_current_date_ntp() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
set_current_date_sntp() {
|
set_current_date_sntp() {
|
||||||
sntp_args="-t ${DATE_TIMEOUT} -K /var/lib/ntp/kod -Ss"
|
sntp_args="-t ${DATE_TIMEOUT} -K /dev/null -Ss"
|
||||||
server=$(cat ${NTP_CONF} | grep server | head -n 1 | cut -d ' ' -f 2)
|
server=$(cat ${NTP_CONF} | grep pool | head -n 1 | cut -d ' ' -f 2)
|
||||||
${PROG_SNTP} ${sntp_args} ${server} &>${LOG_SNTP}
|
${PROG_SNTP} ${sntp_args} ${server} &>${LOG_SNTP}
|
||||||
if [[ $? == 0 ]]; then
|
if [[ $? == 0 ]]; then
|
||||||
logger -t date "current system date/time set to $(date) via SNTP"
|
logger -t date "current system date/time set to $(date) via SNTP"
|
||||||
@ -94,32 +98,22 @@ start_http() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
start_ntp() {
|
start_ntp() {
|
||||||
mkdir -p /var/lib/ntp
|
|
||||||
touch /var/lib/ntp/kod
|
|
||||||
|
|
||||||
cat ${NTP_CONF} | grep -v iburst > ${NTP_CONF}.tmp
|
|
||||||
|
|
||||||
if [[ -n "${DATE_NTP_SERVER}" ]]; then
|
if [[ -n "${DATE_NTP_SERVER}" ]]; then
|
||||||
echo "server ${DATE_NTP_SERVER} iburst" > ${NTP_CONF}
|
sed -i "s/pool .*/pool ${DATE_NTP_SERVER} iburst/" ${NTP_CONF}
|
||||||
else
|
|
||||||
cat ${SYS_NTP_CONF} | grep iburst > ${NTP_CONF}
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat ${NTP_CONF}.tmp >> ${NTP_CONF}
|
|
||||||
rm ${NTP_CONF}.tmp
|
|
||||||
|
|
||||||
if [[ "${DATE_METHOD}" == "sntp" ]]; then
|
if [[ "${DATE_METHOD}" == "sntp" ]]; then
|
||||||
msg_begin "Setting current date using SNTP"
|
msg_begin "Setting current date using SNTP"
|
||||||
set_current_date_sntp
|
set_current_date_sntp
|
||||||
test $? == 0 && msg_done "$(${PROG_DATE})" || msg_fail
|
test $? == 0 && msg_done "$(${PROG_DATE})" || msg_fail
|
||||||
else # assuming ntp
|
else # assuming ntp
|
||||||
msg_begin "Setting current date using NTP"
|
msg_begin "Setting current date using NTP"
|
||||||
set_current_date_ntp || set_current_date_ntp
|
set_current_date_ntp
|
||||||
test $? == 0 && msg_done "$(${PROG_DATE})" || msg_fail
|
test $? == 0 && msg_done "$(${PROG_DATE})" || msg_fail
|
||||||
fi
|
fi
|
||||||
|
|
||||||
msg_begin "Starting ntpd"
|
msg_begin "Starting ntpd"
|
||||||
${PROG_NTPD} -g -c ${NTP_CONF}
|
${PROG_NTPD} -f ${NTP_CONF}
|
||||||
test $? == 0 && msg_done || msg_fail
|
test $? == 0 && msg_done || msg_fail
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,14 +1,6 @@
|
|||||||
tinker panic 0
|
pool pool.ntp.org iburst
|
||||||
|
driftfile /var/lib/chrony.drift
|
||||||
server 0.pool.ntp.org iburst
|
makestep 1000 10
|
||||||
server 1.pool.ntp.org iburst
|
rtcsync
|
||||||
server 2.pool.ntp.org iburst
|
hwclockfile /data/etc/adjtime
|
||||||
|
log tracking
|
||||||
server 127.127.1.0
|
|
||||||
fudge 127.127.1.0 stratum 10
|
|
||||||
|
|
||||||
restrict default noquery nopeer
|
|
||||||
restrict 127.0.0.1
|
|
||||||
restrict ::1
|
|
||||||
|
|
||||||
driftfile /var/lib/ntp/ntp.drift
|
|
||||||
|
@ -59,6 +59,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -69,6 +70,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -51,6 +51,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -61,6 +62,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -51,6 +51,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -61,6 +62,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -52,6 +52,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -62,6 +63,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -54,6 +54,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -64,6 +65,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -54,6 +54,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -64,6 +65,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -54,6 +54,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -64,6 +65,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -57,6 +57,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -67,6 +68,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -57,6 +57,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -67,6 +68,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -57,6 +57,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -67,6 +68,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -64,6 +64,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -74,6 +75,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
@ -55,6 +55,7 @@ BR2_PACKAGE_PCRE=y
|
|||||||
BR2_PACKAGE_PCRE_UCP=y
|
BR2_PACKAGE_PCRE_UCP=y
|
||||||
BR2_PACKAGE_SEMVER_SORT=y
|
BR2_PACKAGE_SEMVER_SORT=y
|
||||||
BR2_PACKAGE_AUTOSSH=y
|
BR2_PACKAGE_AUTOSSH=y
|
||||||
|
BR2_PACKAGE_CHRONY=y
|
||||||
BR2_PACKAGE_CRDA=y
|
BR2_PACKAGE_CRDA=y
|
||||||
BR2_PACKAGE_DHCP=y
|
BR2_PACKAGE_DHCP=y
|
||||||
BR2_PACKAGE_DHCP_CLIENT=y
|
BR2_PACKAGE_DHCP_CLIENT=y
|
||||||
@ -65,6 +66,7 @@ BR2_PACKAGE_NET_TOOLS=y
|
|||||||
BR2_PACKAGE_NETCAT=y
|
BR2_PACKAGE_NETCAT=y
|
||||||
BR2_PACKAGE_NTP=y
|
BR2_PACKAGE_NTP=y
|
||||||
BR2_PACKAGE_NTP_SNTP=y
|
BR2_PACKAGE_NTP_SNTP=y
|
||||||
|
# BR2_PACKAGE_NTP_NTPD is not set
|
||||||
BR2_PACKAGE_OPENSSH=y
|
BR2_PACKAGE_OPENSSH=y
|
||||||
BR2_PACKAGE_PPPD=y
|
BR2_PACKAGE_PPPD=y
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
Loading…
x
Reference in New Issue
Block a user