aboutsummaryrefslogtreecommitdiff
path: root/core/busybox
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-01-12 11:33:14 +0300
committerCem Keylan <cem@ckyln.com>2020-01-12 11:33:14 +0300
commit91fb31e5fd08c0ae5f27f79ca74ce175c298e728 (patch)
tree12c0f9f2670502227c506461b8919b07682f9361 /core/busybox
parent48e3e9d28a92f76412f33357db02dc86b64f55a4 (diff)
downloadrepository-91fb31e5fd08c0ae5f27f79ca74ce175c298e728.tar.gz
add default ntp configuration
Diffstat (limited to 'core/busybox')
-rwxr-xr-xcore/busybox/build3
-rw-r--r--core/busybox/checksums1
-rw-r--r--core/busybox/files/ntp.conf14
-rw-r--r--core/busybox/sources1
-rw-r--r--core/busybox/version2
5 files changed, 20 insertions, 1 deletions
diff --git a/core/busybox/build b/core/busybox/build
index 11f7c17b..e2f5cc32 100755
--- a/core/busybox/build
+++ b/core/busybox/build
@@ -36,3 +36,6 @@ install -Dm755 acpid.run "$1/etc/sv/acpid/run"
install -Dm755 crond.run "$1/etc/sv/crond/run"
ln -s /run/runit/supervise.acpid "$1/etc/sv/acpid/supervise"
ln -s /run/runit/supervise.crond "$1/etc/sv/crond/supervise"
+
+# Install ntp config
+install -Dm644 ntp.conf "$1/etc/ntp.conf"
diff --git a/core/busybox/checksums b/core/busybox/checksums
index 80f9148b..4944c314 100644
--- a/core/busybox/checksums
+++ b/core/busybox/checksums
@@ -3,3 +3,4 @@ d0f940a72f648943c1f2211e0e3117387c31d765137d92bd8284a3fb9752a998 busybox-1.31.1
da3ef90a65abcbd112fa98a00799745d88d568cde290e049a5380dfc74de620a .config-suid
6c3eb5cf839c7a31c337df0cd8388b397e1415ffa7a63e9678552c9c63dd869f acpid.run
814dea14ac612125e97dcc1d619219b2c9dfc14850bf48d858421fb2c98eca12 crond.run
+2c6012579f669ea790785bb522a879a2005aad0d7977f96863918d3ed3cb03dd ntp.conf
diff --git a/core/busybox/files/ntp.conf b/core/busybox/files/ntp.conf
new file mode 100644
index 00000000..0519e916
--- /dev/null
+++ b/core/busybox/files/ntp.conf
@@ -0,0 +1,14 @@
+# Asia
+server 0.asia.pool.ntp.org
+
+# Australia
+server 0.oceania.pool.ntp.org
+
+# Europe
+server 0.europe.pool.ntp.org
+
+# North America
+server 0.north-america.pool.ntp.org
+
+# South America
+server 2.south-america.pool.ntp.org
diff --git a/core/busybox/sources b/core/busybox/sources
index 19fab255..2fc73074 100644
--- a/core/busybox/sources
+++ b/core/busybox/sources
@@ -3,3 +3,4 @@ files/.config
files/.config-suid
files/acpid.run
files/crond.run
+files/ntp.conf
diff --git a/core/busybox/version b/core/busybox/version
index 19d7af58..bad3e38d 100644
--- a/core/busybox/version
+++ b/core/busybox/version
@@ -1 +1 @@
-1.31.1 9
+1.31.1 10