diff options
| -rwxr-xr-x | meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh b/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh index ccc7f9f1f4..df553bc079 100755 --- a/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh +++ b/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh | |||
| @@ -70,7 +70,11 @@ then | |||
| 70 | read TIMESTAMP < /etc/timestamp | 70 | read TIMESTAMP < /etc/timestamp | 
| 71 | if [ ${TIMESTAMP} -gt $SYSTEMDATE ]; then | 71 | if [ ${TIMESTAMP} -gt $SYSTEMDATE ]; then | 
| 72 | # format the timestamp as date expects it (2m2d2H2M4Y.2S) | 72 | # format the timestamp as date expects it (2m2d2H2M4Y.2S) | 
| 73 | date -u ${TIMESTAMP:4:8}${TIMESTAMP:0:4}.${TIMESTAMP:(-2)} | 73 | TS_YR=${TIMESTAMP%??????????} | 
| 74 | TS_SEC=${TIMESTAMP#????????????} | ||
| 75 | TS_FIRST12=${TIMESTAMP%??} | ||
| 76 | TS_MIDDLE8=${TS_FIRST12#????} | ||
| 77 | date -u ${TS_MIDDLE8}${TS_YR}.${TS_SEC} | ||
| 74 | test -x /etc/init.d/hwclock.sh && /etc/init.d/hwclock.sh stop | 78 | test -x /etc/init.d/hwclock.sh && /etc/init.d/hwclock.sh stop | 
| 75 | fi | 79 | fi | 
| 76 | fi | 80 | fi | 
