diff options
author | joerg <joerg@FreeBSD.org> | 2003-09-19 20:04:55 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 2003-09-19 20:04:55 +0000 |
commit | 8dbe9dcdd4caffdbda9c82f54feba55a13013a70 (patch) | |
tree | 70e5972a5fa5dbe48ca1ec4968e974d10b58fbc0 | |
parent | 681eff78173b3a1a2a40c4b8aa6dfb096042575d (diff) | |
download | FreeBSD-src-8dbe9dcdd4caffdbda9c82f54feba55a13013a70.zip FreeBSD-src-8dbe9dcdd4caffdbda9c82f54feba55a13013a70.tar.gz |
Mention the puc(4) glue driver in a commented-out example so the user
of "dumb" PCI-based serial/parallel boards get a hint how to enable
them.
I wasn't sure about the ia64, pc98, powerpc, and sparc64 archs whether
they'd support puc(4) or not.
-rw-r--r-- | sys/alpha/conf/GENERIC | 5 | ||||
-rw-r--r-- | sys/amd64/conf/GENERIC | 4 | ||||
-rw-r--r-- | sys/i386/conf/GENERIC | 4 |
3 files changed, 13 insertions, 0 deletions
diff --git a/sys/alpha/conf/GENERIC b/sys/alpha/conf/GENERIC index ef996ea..2dfc615 100644 --- a/sys/alpha/conf/GENERIC +++ b/sys/alpha/conf/GENERIC @@ -139,6 +139,11 @@ device lpt # Printer device ppi # Parallel port interface device #device vpo # Requires scbus and da +# If you've got a "dumb" serial or parallel PCI card that is +# supported by the puc(4) glue driver, uncomment the following +# line to enable it (connects to the sio and/or ppc drivers): +#device puc + # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device txp # 3Com 3cR990 (``Typhoon'') diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index b62a227..97e7807 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -158,6 +158,10 @@ device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da +# If you've got a "dumb" serial or parallel PCI card that is +# supported by the puc(4) glue driver, uncomment the following +# line to enable it (connects to the sio and/or ppc drivers): +#device puc # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC index 122066a..0dc7924 100644 --- a/sys/i386/conf/GENERIC +++ b/sys/i386/conf/GENERIC @@ -177,6 +177,10 @@ device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da +# If you've got a "dumb" serial or parallel PCI card that is +# supported by the puc(4) glue driver, uncomment the following +# line to enable it (connects to the sio and/or ppc drivers): +#device puc # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') |