2014-01-29 13:17:03 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2013-2014 OpenWrt.org
|
|
|
|
|
|
|
|
START=00
|
2016-02-08 08:25:53 +00:00
|
|
|
STOP=90
|
|
|
|
|
|
|
|
RTC_DEV=/dev/rtc0
|
|
|
|
HWCLOCK=/sbin/hwclock
|
2014-01-29 13:17:03 +00:00
|
|
|
|
|
|
|
boot() {
|
2016-02-08 08:25:53 +00:00
|
|
|
start && exit 0
|
|
|
|
|
2016-05-05 11:34:49 +00:00
|
|
|
local maxtime="$(maxtime)"
|
2014-01-29 13:17:03 +00:00
|
|
|
local curtime="$(date +%s)"
|
2014-06-02 12:42:37 +00:00
|
|
|
[ $curtime -lt $maxtime ] && date -s @$maxtime
|
2014-01-29 13:17:03 +00:00
|
|
|
}
|
|
|
|
|
2016-02-08 08:25:53 +00:00
|
|
|
start() {
|
|
|
|
[ -e "$RTC_DEV" ] && [ -e "$HWCLOCK" ] && $HWCLOCK -s -f $RTC_DEV
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
[ -e "$RTC_DEV" ] && [ -e "$HWCLOCK" ] && $HWCLOCK -w -f $RTC_DEV && \
|
|
|
|
logger -t sysfixtime "saved '$(date)' to $RTC_DEV"
|
|
|
|
}
|
2016-05-05 11:34:49 +00:00
|
|
|
|
|
|
|
maxtime() {
|
|
|
|
local file newest
|
|
|
|
|
|
|
|
for file in $( find /etc -type f ! -path /etc/dnsmasq.time ) ; do
|
|
|
|
[ -z "$newest" -o "$newest" -ot "$file"] && newest=$file
|
|
|
|
done
|
|
|
|
[ "$newest" ] && date -r "$newest" +%s
|
|
|
|
}
|