freebsd-nq/sys/modules/svr4/svr4.sh

13 lines
166 B
Bash
Raw Normal View History

#!/bin/sh
# $Id$
FOUND=`kldstat -v | egrep 'svr4elf'`
if [ "x$FOUND" != x ] ; then
echo SysVR4 driver already loaded
exit 1
else
kldload svr4
fi