diff mbox series

busybox: hwclock init moved earlier in startup

Message ID CAHkgX0umV9QhxPXdMmG=kVUt5Z3t77SraRRFMiipaZwsnzUgiQ@mail.gmail.com
State New
Headers show
Series busybox: hwclock init moved earlier in startup | expand

Commit Message

Chris Elledge March 31, 2023, 8:44 p.m. UTC
hwclock.sh had default update-rc parameters which made it run after
other tasks that work with the clock such as connman. This causes a
time obtained by NTP to be clobbered by a potentially incorrect time
in the RTC.

Provided non-default INITSCRIPT_PARAMS to have hwclock.sh run during
the rc startup before runlevel initscripts start.

Signed-off-by: Chris Elledge <celledge@siteworx.io>
---
 meta/recipes-core/busybox/busybox.inc | 1 +
 1 file changed, 1 insertion(+)

 INITSCRIPT_NAME:${PN}-syslog = "syslog"
--
2.34.1
diff mbox series

Patch

diff --git a/meta/recipes-core/busybox/busybox.inc
b/meta/recipes-core/busybox/busybox.inc
index 62dc839245..f5d7c3f9c8 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -34,6 +34,7 @@  INITSCRIPT_PACKAGES = "${PN}-httpd ${PN}-syslog
${PN}-udhcpd ${PN}-mdev ${PN}-hw

 INITSCRIPT_NAME:${PN}-httpd = "busybox-httpd"
 INITSCRIPT_NAME:${PN}-hwclock = "hwclock.sh"
+INITSCRIPT_PARAMS:${PN}-hwclock = "start 40 S . stop 20 0 1 6 ."
 INITSCRIPT_NAME:${PN}-mdev = "mdev"
 INITSCRIPT_PARAMS:${PN}-mdev = "start 04 S ."