add ntpd add acc
This commit is contained in:
parent
6cf426630a
commit
155c1db7ff
@ -1,7 +1,7 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Busybox version: 1.34.1
|
||||
# Tue Nov 21 10:34:55 2023
|
||||
# Wed Apr 15 10:32:02 2026
|
||||
#
|
||||
CONFIG_HAVE_DOT_CONFIG=y
|
||||
|
||||
@ -936,10 +936,10 @@ CONFIG_FEATURE_NETSTAT_PRG=y
|
||||
# CONFIG_NSLOOKUP is not set
|
||||
# CONFIG_FEATURE_NSLOOKUP_BIG is not set
|
||||
# CONFIG_FEATURE_NSLOOKUP_LONG_OPTIONS is not set
|
||||
# CONFIG_NTPD is not set
|
||||
# CONFIG_FEATURE_NTPD_SERVER is not set
|
||||
# CONFIG_FEATURE_NTPD_CONF is not set
|
||||
# CONFIG_FEATURE_NTP_AUTH is not set
|
||||
CONFIG_NTPD=y
|
||||
CONFIG_FEATURE_NTPD_SERVER=y
|
||||
CONFIG_FEATURE_NTPD_CONF=y
|
||||
CONFIG_FEATURE_NTP_AUTH=y
|
||||
CONFIG_PING=y
|
||||
# CONFIG_PING6 is not set
|
||||
CONFIG_FEATURE_FANCY_PING=y
|
||||
|
||||
@ -36,8 +36,10 @@ BR2_LINUX_KERNEL_DEFCONFIG="d211_demo128_nand"
|
||||
BR2_LINUX_KERNEL_IMAGEGZ=y
|
||||
BR2_PACKAGE_LINUX_TOOLS_SELFTESTS=y
|
||||
# BR2_PACKAGE_AIC_AUTHORIZATION is not set
|
||||
BR2_PACKAGE_AIC_MPP_AAC_DECODER=y
|
||||
# BR2_PACKAGE_TEST_DVP is not set
|
||||
# BR2_PACKAGE_TEST_TOUCHSCREEN is not set
|
||||
# BR2_PACKAGE_BUSYBOX_USE_PREBUILT is not set
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="package/third-party/busybox/configs/d211_demo128_nand_defconfig"
|
||||
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
|
||||
BR2_PACKAGE_UTIL_LINUX_BINARIES=y
|
||||
|
||||
28
target/d211/demo128_nand/rootfs_overlay/etc/init.d/rcS
Executable file
28
target/d211/demo128_nand/rootfs_overlay/etc/init.d/rcS
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Start all init scripts in /etc/init.d
|
||||
# executing them in numerical order.
|
||||
#
|
||||
for i in /etc/init.d/S??* ;do
|
||||
|
||||
# Ignore dangling symlinks (if any).
|
||||
[ ! -f "$i" ] && continue
|
||||
|
||||
case "$i" in
|
||||
*.sh)
|
||||
# Source shell script for speed.
|
||||
(
|
||||
trap - INT QUIT TSTP
|
||||
set start
|
||||
. $i
|
||||
)
|
||||
;;
|
||||
*)
|
||||
# No sh extension, so fork subprocess.
|
||||
$i start
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
/usr/bin/e_player &
|
||||
Loading…
Reference in New Issue
Block a user