f47aa04a30
. replaced by a readclock 'driver' that runs once, a re-imported version of the minix 2.0.4 readclock command. . this has also restored cmos writing. . readclock wrapper script calls service command to run /bin/readclock.drv once.
5 lines
141 B
Bash
5 lines
141 B
Bash
#!/bin/sh
|
|
if [ $# -gt 0 ]
|
|
then ARGS="-args $@"
|
|
fi
|
|
/bin/service up /sbin/readclock.drv -config /etc/drivers.conf -script /etc/rs.single $ARGS
|