diff --git a/board/common/overlay/etc/init.d/S50date b/board/common/overlay/etc/init.d/S50date index be42d6e9e3..8ec3871268 100755 --- a/board/common/overlay/etc/init.d/S50date +++ b/board/common/overlay/etc/init.d/S50date @@ -40,7 +40,7 @@ source $conf set_current_date_http() { date_str=$(curl -v -s -m $date_timeout -X GET http://$date_host 2>&1 | grep Date | sed -e 's/< Date: //') - date -D "%a, %d %b %Y %H:%M:%S" -s "$date_str" > /dev/null + date -u -D "%a, %d %b %Y %H:%M:%S" -s "$date_str" > /dev/null return $? }