aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1995-04-08 09:36:04 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1995-04-08 09:36:04 +0000
commit12cfa4365082092c9edccdbb7a5368e394dae8a1 (patch)
treea1276f396a339249a70e914da361bf4e9d0ad101 /sys
parent9f747fa23edea3f55b934f68b372e1fa2f133e6b (diff)
downloadsrc-12cfa4365082092c9edccdbb7a5368e394dae8a1.tar.gz
src-12cfa4365082092c9edccdbb7a5368e394dae8a1.zip
Added the "eg0" interface driver for the 3Com "3c505" or "etherlink/+"
card. This is the braindamaged card with the 80186 CPU on it. It is slow, probably not very good after all, but hey, if you have one lying around doing nothing anyway... Added the "zp0" driver to GENERIC.
Notes
Notes: svn path=/head/; revision=7660
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/conf/GENERIC6
-rw-r--r--sys/conf/NOTES3
-rw-r--r--sys/conf/files.i3863
-rw-r--r--sys/i386/conf/GENERIC6
-rw-r--r--sys/i386/conf/LINT3
-rw-r--r--sys/i386/conf/NOTES3
-rw-r--r--sys/i386/conf/files.i3863
7 files changed, 18 insertions, 9 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC
index 5d9385142dc1..1c83a8b2fb7c 100644
--- a/sys/amd64/conf/GENERIC
+++ b/sys/amd64/conf/GENERIC
@@ -1,7 +1,7 @@
#
# GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks
#
-# $Id: GENERIC,v 1.36 1995/03/18 08:12:47 rgrimes Exp $
+# $Id: GENERIC,v 1.37 1995/03/30 00:20:07 rgrimes Exp $
#
machine "i386"
@@ -91,12 +91,14 @@ device lpt2 at isa? port? tty
device de0
device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr
device ed1 at isa? port 0x300 net irq 5 iomem 0xd8000 vector edintr
+device eg0 at isa? port 0x310 net irq 5 vector egintr
+device ep0 at isa? port 0x300 net irq 10 vector epintr
device ie0 at isa? port 0x360 net irq 7 iomem 0xd0000 vector ieintr
device ix0 at isa? port 0x300 net irq 10 iomem 0xd0000 iosiz 32768 vector ixintr
-device ep0 at isa? port 0x300 net irq 10 vector epintr
device lnc0 at isa? port 0x280 net irq 10 drq 0 vector lncintr
device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 vector le_intr
device ze0 at isa? port 0x300 net irq 5 iomem 0xd8000 vector zeintr
+device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector zpintr
pseudo-device loop
pseudo-device ether
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 786d82563b68..d234b5d864bb 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.162 1995/04/06 03:22:12 jkh Exp $
+# $Id: LINT,v 1.163 1995/04/06 14:01:20 ache 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
@@ -518,6 +518,7 @@ options DSI_SOFT_MODEM #code for DSI Softmodems
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
device el0 at isa? port 0x300 net irq 9 vector elintr
device ep0 at isa? port 0x300 net irq 10 vector epintr
device fea0 at isa? net irq ? vector feaintr
diff --git a/sys/conf/files.i386 b/sys/conf/files.i386
index 635174298c9a..0d0ee825fdc7 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.91 1995/03/24 18:30:11 jkh Exp $
+# $Id: files.i386,v 1.92 1995/03/27 19:39:45 ache Exp $
#
aic7xxx optional ahc device-driver \
dependency "$S/gnu/misc/aic7xxx/aic7xxx.c" \
@@ -75,6 +75,7 @@ i386/isa/gpib.c optional gp device-driver
i386/isa/gsc.c optional gsc 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
i386/isa/if_el.c optional el device-driver
i386/isa/if_ep.c optional ep device-driver
i386/isa/if_ie.c optional ie device-driver
diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC
index 5d9385142dc1..1c83a8b2fb7c 100644
--- a/sys/i386/conf/GENERIC
+++ b/sys/i386/conf/GENERIC
@@ -1,7 +1,7 @@
#
# GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks
#
-# $Id: GENERIC,v 1.36 1995/03/18 08:12:47 rgrimes Exp $
+# $Id: GENERIC,v 1.37 1995/03/30 00:20:07 rgrimes Exp $
#
machine "i386"
@@ -91,12 +91,14 @@ device lpt2 at isa? port? tty
device de0
device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr
device ed1 at isa? port 0x300 net irq 5 iomem 0xd8000 vector edintr
+device eg0 at isa? port 0x310 net irq 5 vector egintr
+device ep0 at isa? port 0x300 net irq 10 vector epintr
device ie0 at isa? port 0x360 net irq 7 iomem 0xd0000 vector ieintr
device ix0 at isa? port 0x300 net irq 10 iomem 0xd0000 iosiz 32768 vector ixintr
-device ep0 at isa? port 0x300 net irq 10 vector epintr
device lnc0 at isa? port 0x280 net irq 10 drq 0 vector lncintr
device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 vector le_intr
device ze0 at isa? port 0x300 net irq 5 iomem 0xd8000 vector zeintr
+device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector zpintr
pseudo-device loop
pseudo-device ether
diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT
index 786d82563b68..d234b5d864bb 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.162 1995/04/06 03:22:12 jkh Exp $
+# $Id: LINT,v 1.163 1995/04/06 14:01:20 ache 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
@@ -518,6 +518,7 @@ options DSI_SOFT_MODEM #code for DSI Softmodems
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
device el0 at isa? port 0x300 net irq 9 vector elintr
device ep0 at isa? port 0x300 net irq 10 vector epintr
device fea0 at isa? net irq ? vector feaintr
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index 786d82563b68..d234b5d864bb 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.162 1995/04/06 03:22:12 jkh Exp $
+# $Id: LINT,v 1.163 1995/04/06 14:01:20 ache 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
@@ -518,6 +518,7 @@ options DSI_SOFT_MODEM #code for DSI Softmodems
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
device el0 at isa? port 0x300 net irq 9 vector elintr
device ep0 at isa? port 0x300 net irq 10 vector epintr
device fea0 at isa? net irq ? vector feaintr
diff --git a/sys/i386/conf/files.i386 b/sys/i386/conf/files.i386
index 635174298c9a..0d0ee825fdc7 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.91 1995/03/24 18:30:11 jkh Exp $
+# $Id: files.i386,v 1.92 1995/03/27 19:39:45 ache Exp $
#
aic7xxx optional ahc device-driver \
dependency "$S/gnu/misc/aic7xxx/aic7xxx.c" \
@@ -75,6 +75,7 @@ i386/isa/gpib.c optional gp device-driver
i386/isa/gsc.c optional gsc 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
i386/isa/if_el.c optional el device-driver
i386/isa/if_ep.c optional ep device-driver
i386/isa/if_ie.c optional ie device-driver