summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1995-11-21 02:50:10 +0000
committerpeter <peter@FreeBSD.org>1995-11-21 02:50:10 +0000
commit0786a4cac5b6624e0f2099e9034589498b5c862b (patch)
tree290d93956903d4eefb759e454f3ac3b0f2a10b65 /sys/i386
parent0b1628b7d8f2592efaa27f43319a9d6c4ab0b384 (diff)
downloadFreeBSD-src-0786a4cac5b6624e0f2099e9034589498b5c862b.zip
FreeBSD-src-0786a4cac5b6624e0f2099e9034589498b5c862b.tar.gz
Add and document the hooks for John Hay's Arnet sync driver...
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/conf/LINT6
-rw-r--r--sys/i386/conf/NOTES6
-rw-r--r--sys/i386/conf/files.i3863
3 files changed, 10 insertions, 5 deletions
diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT
index 05e119a..628b0c4 100644
--- a/sys/i386/conf/LINT
+++ b/sys/i386/conf/LINT
@@ -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.212 1995/11/05 17:02:54 gibbs Exp $
+# $Id: LINT,v 1.213 1995/11/09 22:47:05 gibbs 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
@@ -148,7 +148,7 @@ options "IPX_ERRPRINTFS=0" #IPX/SPX Console Debugging Information
# configured.
# The 'fddi' pseudo-device provides generic code to support FDDI.
# The `sppp' pseudo-device serves a similar role for certain types
-# of synchronous PPP links (like `cx').
+# of synchronous PPP links (like `cx', `ar').
# The `sl' pseudo-device implements the Serial Line IP (SLIP) service.
# The `ppp' pseudo-device implements the Point-to-Point Protocol.
# The `bpfilter' pseudo-device enables the Berkeley Packet Filter. Be
@@ -576,6 +576,7 @@ options BREAK_TO_DEBUGGER #a BREAK on a comconsole goes to
#
# 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 (reqires sppp)
# 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!)
@@ -592,6 +593,7 @@ options BREAK_TO_DEBUGGER #a BREAK on a comconsole goes to
# attribute memory)
#
+device ar0 at isa? port 0x300 net irq 10 iomem 0xd0000 vector arintr
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/i386/conf/NOTES b/sys/i386/conf/NOTES
index 05e119a..628b0c4 100644
--- a/sys/i386/conf/NOTES
+++ b/sys/i386/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.212 1995/11/05 17:02:54 gibbs Exp $
+# $Id: LINT,v 1.213 1995/11/09 22:47:05 gibbs 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
@@ -148,7 +148,7 @@ options "IPX_ERRPRINTFS=0" #IPX/SPX Console Debugging Information
# configured.
# The 'fddi' pseudo-device provides generic code to support FDDI.
# The `sppp' pseudo-device serves a similar role for certain types
-# of synchronous PPP links (like `cx').
+# of synchronous PPP links (like `cx', `ar').
# The `sl' pseudo-device implements the Serial Line IP (SLIP) service.
# The `ppp' pseudo-device implements the Point-to-Point Protocol.
# The `bpfilter' pseudo-device enables the Berkeley Packet Filter. Be
@@ -576,6 +576,7 @@ options BREAK_TO_DEBUGGER #a BREAK on a comconsole goes to
#
# 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 (reqires sppp)
# 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!)
@@ -592,6 +593,7 @@ options BREAK_TO_DEBUGGER #a BREAK on a comconsole goes to
# attribute memory)
#
+device ar0 at isa? port 0x300 net irq 10 iomem 0xd0000 vector arintr
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/i386/conf/files.i386 b/sys/i386/conf/files.i386
index 48393e2..660d248 100644
--- a/sys/i386/conf/files.i386
+++ b/sys/i386/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.114 1995/11/09 22:42:48 gibbs Exp $
+# $Id: files.i386,v 1.115 1995/11/18 05:34:00 bde Exp $
#
aic7xxx_asm optional ahc device-driver \
dependency "$S/dev/aic7xxx/aic7xxx_asm.c" \
@@ -82,6 +82,7 @@ i386/isa/ft.c optional ft device-driver
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_cx.c optional cx device-driver
i386/isa/if_ed.c optional ed device-driver
i386/isa/if_eg.c optional eg device-driver
OpenPOWER on IntegriCloud