summaryrefslogtreecommitdiff
path: root/emulators/rtc/files/rtc.sh
blob: ac92bc1b197446649c06d19f1e297b8b7b259d44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

kmoddir=@@PREFIX@@/modules
kmod=rtc.ko

case "$1" in
start)
	if [ -x $kmoddir/$kmod ]; then
	    echo -n ' rtc'
	    /sbin/kldload $kmoddir/$kmod
	fi
	;;
stop)
	/sbin/kldunload $kmod && echo -n ' rtc'
	;;
*)
	echo "Usage: `basename $0` {start|stop}" >&2
	exit 64
	;;
esac