base-files: coreutil-date breaks setting kernel timezone
authorVal Kulkov <val.kulkov@gmail.com>
Mon, 7 Oct 2019 16:06:52 +0000 (12:06 -0400)
committerHauke Mehrtens <hauke@hauke-m.de>
Sat, 12 Oct 2019 21:43:08 +0000 (23:43 +0200)
"coreutil-date" package from the packages feed replaces the Busybox date
applet by symlinking /usr/bin/gnu-date to /bin/date. This prevents the system
init script from setting kernel timezone because the GNU date utility does not
provide such functionality:

   root@OpenWrt:~# date -k
   date: invalid option -- 'k'
   Try 'date --help' for more information.

A specific reference to the Busybox date applet prevents alternative date
utilities from breaking the system init script.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
package/base-files/files/etc/init.d/system

index a98a9724691fda37f1c5cd0fa66d3dde291ad0b0..0e33c522b4bfa43af8301adfaa767f59a2ff895f 100755 (executable)
@@ -27,7 +27,7 @@ system_config() {
                ln -sf "/usr/share/zoneinfo/$zonename" /tmp/localtime && rm -f /tmp/TZ
 
        # apply timezone to kernel
-       date -k
+       busybox date -k
 }
 
 reload_service() {