mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
f22dd58acc
See http://www.freebsd.org/~newton/freebsd-svr4 for limitations, capabilities, history and TO-DO list.
13 lines
166 B
Bash
13 lines
166 B
Bash
#!/bin/sh
|
|
|
|
# $Id$
|
|
|
|
FOUND=`kldstat -v | egrep 'svr4elf'`
|
|
|
|
if [ "x$FOUND" != x ] ; then
|
|
echo SysVR4 driver already loaded
|
|
exit 1
|
|
else
|
|
kldload svr4
|
|
fi
|