freebsd-dev/etc/rc.pccard
Nate Williams 73f4b721ae - Mixup of kldstat arguments. Use '-i 1' instead of '-n 1' when checking
for the PCIC module in the kernel.

{ I promise this is the last commit! }

Submitted by:	"Sean O'Connell" <sean@stat.Duke.EDU>
1999-03-17 21:57:00 +00:00

26 lines
575 B
Bash

#!/bin/sh -
#
# PC-card startup script
# HOSOKAWA, Tatsumi <hosokawa@mt.cs.keio.ac.jp>
#
# $Id: rc.pccard,v 1.9 1999/03/17 20:57:40 nate Exp $
#
if [ "X$pccard_enable" = X"YES" ] ; then
builtin=`kldstat -v -i 1 | grep pcic | awk '{print $2}'`
if [ "$builtin" = "pcic" ] ; then
echo "PCIC module compiled in"
else
if kldload pcic; then
echo "Kernel pcic module loaded."
fi
fi
if [ "x$pccard_mem" != "xDEFAULT" ] ; then
pccardc pccardmem $pccard_mem
else
pccardc pccardmem 0xd0000
fi
echo -n "Enable PC-card."
pccardd 2>&1 > /var/log/pccardd.debug &
fi