diff options
author | markm <markm@FreeBSD.org> | 1999-05-05 19:34:29 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1999-05-05 19:34:29 +0000 |
commit | f55eb995a99b9954287ddb48179dd0f525cb1cb6 (patch) | |
tree | e5cbcf33f724ceec73cbf4cffe28984885bc1852 /etc/rc.pccard | |
parent | 16a5877732447857117321cb1c7e70f451d91c97 (diff) | |
download | FreeBSD-src-f55eb995a99b9954287ddb48179dd0f525cb1cb6.zip FreeBSD-src-f55eb995a99b9954287ddb48179dd0f525cb1cb6.tar.gz |
This has bitrotted to the state that it is no longer functional.
Make Mike Smith very happy by nuking the PCIC auto-load code. :-)
NOTE - You will have to have PCIC in your kernel again!!
You have been warned!!
Diffstat (limited to 'etc/rc.pccard')
-rw-r--r-- | etc/rc.pccard | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/etc/rc.pccard b/etc/rc.pccard index 12a4257..41a327e 100644 --- a/etc/rc.pccard +++ b/etc/rc.pccard @@ -3,18 +3,10 @@ # PC-card startup script # HOSOKAWA, Tatsumi <hosokawa@mt.cs.keio.ac.jp> # -# $Id: rc.pccard,v 1.10 1999/03/17 21:57:00 nate Exp $ +# $Id: rc.pccard,v 1.11 1999/05/04 08:34:55 dima Exp $ # if [ "X$pccard_enable" = X"YES" ] ; then - builtin=`kldstat -v -i 1 | grep -w 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 |