bootmisc.h: use "date -s" to set time

without "-s", 201009031653 would be interpreted incorrectly by date
and then we saw below warning:
	date: invalid date 165320100903

Fix [BUGID #265]

Signed-off-by: Kevin Tian <kevin.tian@intel.com>
This commit is contained in:
Kevin Tian 2010-09-03 16:37:20 +08:00 committed by Richard Purdie
parent e5fe433b14
commit 41d02d40ed
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ then
read TIMESTAMP < /etc/timestamp2
NEEDUPDATE=`expr \( $TIMESTAMP \> $SYSTEMDATE + 10000 \)`
if [ $NEEDUPDATE -eq 1 ]; then
date $TIMESTAMP
date -s $TIMESTAMP
/etc/init.d/hwclock.sh stop
fi
fi