committing ipk sources
This commit is contained in:
11
lg_webOS/_ipk-building/base-files/source/etc/init.d/sysfixtime
Executable file
11
lg_webOS/_ipk-building/base-files/source/etc/init.d/sysfixtime
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2013-2014 OpenWrt.org
|
||||
|
||||
START=00
|
||||
|
||||
boot() {
|
||||
local curtime="$(date +%s)"
|
||||
local maxtime="$(find /etc -type f -exec date -r {} +%s \; | sort -nr | head -n1)"
|
||||
[ $curtime -lt $maxtime ] && date -s @$maxtime
|
||||
}
|
||||
|
Reference in New Issue
Block a user