mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
12 lines
227 B
Bash
12 lines
227 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
FOUND=`kldstat -v | egrep 'linux(aout|elf)'`
|
|
|
|
if [ "x$FOUND" != x ] ; then
|
|
echo Linux driver already loaded
|
|
exit 1
|
|
else
|
|
kldload linux
|
|
fi
|