mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
21 lines
350 B
Bash
21 lines
350 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
FOUND=`kldstat -v | egrep 'linux(aout|elf)'`
|
|
|
|
exitcode=0
|
|
|
|
if [ "x$FOUND" != x ] ; then
|
|
echo Linux driver already loaded
|
|
exitcode=1
|
|
else
|
|
kldload linux
|
|
exitcode=$?
|
|
fi
|
|
|
|
if [ -f /compat/linux/sbin/ldconfig ] ; then
|
|
/compat/linux/sbin/ldconfig
|
|
fi
|
|
|
|
exit $exitcode
|