diff options
author | Mike Smith <msmith@FreeBSD.org> | 1998-07-20 20:00:43 +0000 |
---|---|---|
committer | Mike Smith <msmith@FreeBSD.org> | 1998-07-20 20:00:43 +0000 |
commit | b16d163da156d463cd6837e81d9c6c8fab886bd3 (patch) | |
tree | aaa5e9c9d6ec6ed495d03831db8000eebe89b007 /sys/conf | |
parent | 2512c3e67bd161b427497f283d507b74cf86b538 (diff) | |
download | src-b16d163da156d463cd6837e81d9c6c8fab886bd3.tar.gz src-b16d163da156d463cd6837e81d9c6c8fab886bd3.zip |
Add the 'cs' driver for Crystal Semiconductor CS89x0 devices. This
supports PnP and if_media. I've been running a slightly older version
here for several weeks now.
Submitted by: Maxim Bolotin <max@rsu.ru>
Notes
Notes:
svn path=/head/; revision=37785
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/NOTES | 4 | ||||
-rw-r--r-- | sys/conf/files.i386 | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 2ca1fcc0c9fd..0ad0237cdf36 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -2,7 +2,7 @@ # LINT -- config file for checking all the sources, tries to pull in # as much of the source tree as it can. # -# $Id: LINT,v 1.445 1998/06/30 14:43:01 bde Exp $ +# $Id: LINT,v 1.446 1998/07/11 04:46:27 julian Exp $ # # NB: You probably don't want to try running a kernel built from this # file. Instead, you should start from GENERIC, and add options from @@ -1003,6 +1003,7 @@ options "EXTRA_SIO=2" #number of extra sio ports to allocate # Network interfaces: `cx', `ed', `el', `ep', `ie', `is', `le', `lnc' # # ar: Arnet SYNC/570i hdlc sync 2/4 port V.35/X.21 serial driver (requires sppp) +# cs: IBM Etherjet and other Crystal Semi CS89x0-based adapters # cx: Cronyx/Sigma multiport sync/async (with Cisco or PPP framing) # ed: Western Digital and SMC 80xx; Novell NE1000 and NE2000; 3Com 3C503 # el: 3Com 3C501 (slow!) @@ -1021,6 +1022,7 @@ options "EXTRA_SIO=2" #number of extra sio ports to allocate # device ar0 at isa? port 0x300 net irq 10 iomem 0xd0000 vector arintr +device cs0 at isa? port 0x300 net irq ? vector csintr device cx0 at isa? port 0x240 net irq 15 drq 7 vector cxintr device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr device eg0 at isa? port 0x310 net irq 5 vector egintr diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index c6374faefa85..451feeaf8f43 100644 --- a/sys/conf/files.i386 +++ b/sys/conf/files.i386 @@ -1,7 +1,7 @@ # This file tells config what files go into building a kernel, # files marked standard are always included. # -# $Id: files.i386,v 1.197 1998/04/19 23:31:29 julian Exp $ +# $Id: files.i386,v 1.198 1998/06/16 14:55:27 bde Exp $ # # The long compile-with and dependency lines are required because of # limitations in config: backslash-newline doesn't work in strings, and @@ -110,6 +110,7 @@ i386/isa/gpib.c optional gp device-driver i386/isa/asc.c optional asc device-driver i386/isa/gsc.c optional gsc device-driver i386/isa/if_ar.c optional ar device-driver +i386/isa/if_cs.c optional cs device-driver i386/isa/if_cx.c optional cx device-driver i386/isa/if_ed.c optional ed device-driver i386/isa/if_eg.c optional eg device-driver |