mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
Currently, /etc/timestamp is saved with minutes accuracy. To increase the accuracy, modify the save-rtc.sh and bootmisc.sh scripts to save and read /etc/timestamp respectively with seconds accuracy. (From OE-Core rev: 8fed53e4e72230c61f23cb36eda36c228aede1e0) Signed-off-by: Richard Tollerton <rich.tollerton@ni.com> Signed-off-by: Ben Shelton <ben.shelton@ni.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
324 B
Bash
14 lines
324 B
Bash
#!/bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: save-rtc
|
|
# Required-Start:
|
|
# Required-Stop: $local_fs hwclock
|
|
# Default-Start: S
|
|
# Default-Stop: 0 6
|
|
# Short-Description: Store system clock into file
|
|
# Description:
|
|
### END INIT INFO
|
|
|
|
# Update the timestamp
|
|
date -u +%4Y%2m%2d%2H%2M%2S > /etc/timestamp
|