21f460e0c1
This reverts commit 382779e009
.
Reverting this commit due to a missing Signed-off-by.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
25 lines
530 B
Bash
Executable file
25 lines
530 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2013-2014 OpenWrt.org
|
|
|
|
START=00
|
|
STOP=90
|
|
|
|
RTC_DEV=/dev/rtc0
|
|
HWCLOCK=/sbin/hwclock
|
|
|
|
boot() {
|
|
start && exit 0
|
|
|
|
local curtime="$(date +%s)"
|
|
local maxtime="$(find /etc -type f -exec date -r {} +%s \; | sort -nr | head -n1)"
|
|
[ $curtime -lt $maxtime ] && date -s @$maxtime
|
|
}
|
|
|
|
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"
|
|
}
|