sysfixtime 247 B

1234567891011
  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2013-2014 OpenWrt.org
  3. START=00
  4. boot() {
  5. local curtime="$(date +%s)"
  6. local maxtime="$(find /etc -type f -exec date -r {} +%s \; | sort -nr | head -n1)"
  7. [ $curtime -lt $maxtime ] && date -s @$maxtime
  8. }