diff options
author | nork <nork@FreeBSD.org> | 2003-03-23 12:36:58 +0000 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-03-23 12:36:58 +0000 |
commit | 0f2cce2cf75f37ac561ddd0fa6ba59a3fa512016 (patch) | |
tree | 257cfa8c3e632c05c8e9b6b4ee1d41e6adced222 /emulators/rtc/files/rtc.sh | |
parent | 041f9fdf82a8c6586111555eca817393a7129def (diff) | |
download | FreeBSD-ports-0f2cce2cf75f37ac561ddd0fa6ba59a3fa512016.zip FreeBSD-ports-0f2cce2cf75f37ac561ddd0fa6ba59a3fa512016.tar.gz |
Support post-500104-current.
Submitted by: Marcin Cielak <saper@sgh.waw.pl>
Tested by: freebsd-emulation
Diffstat (limited to 'emulators/rtc/files/rtc.sh')
-rw-r--r-- | emulators/rtc/files/rtc.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/rtc/files/rtc.sh b/emulators/rtc/files/rtc.sh index 8751f46..ac92bc1 100644 --- a/emulators/rtc/files/rtc.sh +++ b/emulators/rtc/files/rtc.sh @@ -7,11 +7,11 @@ case "$1" in start) if [ -x $kmoddir/$kmod ]; then echo -n ' rtc' - kldload $kmoddir/$kmod + /sbin/kldload $kmoddir/$kmod fi ;; stop) - kldunload $kmod && echo -n ' rtc' + /sbin/kldunload $kmod && echo -n ' rtc' ;; *) echo "Usage: `basename $0` {start|stop}" >&2 |