1995-06-25 17:32:43 +00:00
|
|
|
#!/bin/sh
|
1998-09-07 16:15:59 +00:00
|
|
|
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1998-09-07 16:15:59 +00:00
|
|
|
|
1998-11-05 04:19:26 +00:00
|
|
|
FOUND=`kldstat -v | egrep 'linux(aout|elf)'`
|
|
|
|
|
1999-12-13 08:38:22 +00:00
|
|
|
exitcode=0
|
|
|
|
|
1998-11-05 04:19:26 +00:00
|
|
|
if [ "x$FOUND" != x ] ; then
|
|
|
|
echo Linux driver already loaded
|
1999-12-13 08:38:22 +00:00
|
|
|
exitcode=1
|
1998-11-05 04:19:26 +00:00
|
|
|
else
|
|
|
|
kldload linux
|
1999-12-13 08:38:22 +00:00
|
|
|
exitcode=$?
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f /compat/linux/sbin/ldconfig ] ; then
|
|
|
|
/compat/linux/sbin/ldconfig
|
1998-09-07 16:15:59 +00:00
|
|
|
fi
|
1999-12-13 08:38:22 +00:00
|
|
|
|
|
|
|
exit $exitcode
|