#!/bin/sh

[ $# < 1 ] && return 0

if [ $1 == "step" ]
then
    echo "===Reseting system time to RTC===" > /dev/console
    hwclock -w
fi

