diff options
author | nate <nate@FreeBSD.org> | 1996-03-12 15:39:26 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1996-03-12 15:39:26 +0000 |
commit | 38eb2b368673f5ff345496b145b73de48dc230f5 (patch) | |
tree | 285c6fd953dcea611c949ecc3e0e3eb2c3b17c19 /etc/rc | |
parent | 4673b20df958499becc8cf99763415e5cfc23a9a (diff) | |
download | FreeBSD-src-38eb2b368673f5ff345496b145b73de48dc230f5.zip FreeBSD-src-38eb2b368673f5ff345496b145b73de48dc230f5.tar.gz |
PC-CARD hooks. Someday it will actually enable working code. :)
Reviewed by: phk
Submitted by: Tatsumi Hosokawa <hosokawa@mt.cs.keio.ac.jp> & BSD Nomads
I re-wrote alot of this, but the ideas are based on the code from the
most recent pccard-snapshot.
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.84 1996/02/09 12:20:37 jkh Exp $ +# $Id: rc,v 1.85 1996/02/23 10:44:49 adam Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -94,6 +94,11 @@ if [ -f /etc/rc.serial ]; then . /etc/rc.serial fi +# start up PC-card configuration +if [ -f /etc/pccardstart ]; then + . /etc/pccardstart +fi + # start up the network if [ -f /etc/netstart ]; then sh /etc/netstart |