summaryrefslogtreecommitdiffstats
path: root/sys/modules/linux/linux.sh
blob: aad1331a274cc179d24bc1e8475d63b1523e911c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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
OpenPOWER on IntegriCloud