#! /bin/sh

# clock: System initialisation script

. init-script-lib

# TODO: get time from network?

case $1 in 
	start)
		fatal need devfs
		say setting system clock from CMOS
		fatal hwclock --hctosys
		;;
	stop)
		say storing system clock to CMOS
		fatal hwclock --systohc
		;;
esac


