freebsd-ports/emulators/rtc/files/rtc.sh
Akinori MUSHA 48af3464ad Update for the latest current. (lminor() -> dev2unit())
Correct the startup script to unload rtc.ko module properly.
2000-09-22 11:08:22 +00:00

21 lines
271 B
Bash

#!/bin/sh
kmoddir=@@PREFIX@@/modules
kmod=rtc.ko
case "$1" in
start)
if [ -x $kmoddir/$kmod ]; then
echo -n ' rtc'
kldload $kmoddir/$kmod
fi
;;
stop)
kldunload $kmod && echo -n ' rtc'
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac