diff options
author | rik <rik@FreeBSD.org> | 2006-01-31 23:11:35 +0000 |
---|---|---|
committer | rik <rik@FreeBSD.org> | 2006-01-31 23:11:35 +0000 |
commit | 34e5ca5b0218833663b71e333221ff426ec2e440 (patch) | |
tree | f1a97f5505db481c66087dfcdee487918a510918 | |
parent | 241f2e933204c79f7f021032603938676a14cae7 (diff) | |
download | FreeBSD-src-34e5ca5b0218833663b71e333221ff426ec2e440.zip FreeBSD-src-34e5ca5b0218833663b71e333221ff426ec2e440.tar.gz |
Attach ce(4) to the build.
MFC after: 3 days
-rw-r--r-- | share/man/man4/man4.i386/Makefile | 1 | ||||
-rw-r--r-- | sys/conf/files.i386 | 3 | ||||
-rw-r--r-- | sys/i386/conf/NOTES | 4 | ||||
-rw-r--r-- | sys/modules/Makefile | 2 |
4 files changed, 10 insertions, 0 deletions
diff --git a/share/man/man4/man4.i386/Makefile b/share/man/man4/man4.i386/Makefile index 8f22739..e16c27c 100644 --- a/share/man/man4/man4.i386/Makefile +++ b/share/man/man4/man4.i386/Makefile @@ -12,6 +12,7 @@ MAN= acpi_asus.4 \ apm.4 \ ar.4 \ arl.4 \ + ce.4 \ cp.4 \ CPU_ELAN.4 \ cs.4 \ diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index deee3f2..531c8a8 100644 --- a/sys/conf/files.i386 +++ b/sys/conf/files.i386 @@ -142,6 +142,9 @@ dev/atkbdc/atkbdc.c optional atkbdc dev/atkbdc/atkbdc_isa.c optional atkbdc isa dev/atkbdc/atkbdc_subr.c optional atkbdc dev/atkbdc/psm.c optional psm atkbdc +dev/ce/ceddk.c optional ce +dev/ce/if_ce.c optional ce +dev/ce/tau32-ddk.c optional ce dev/cm/if_cm_isa.c optional cm isa dev/cp/cpddk.c optional cp dev/cp/if_cp.c optional cp diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES index fd8016a..adaedc3 100644 --- a/sys/i386/conf/NOTES +++ b/sys/i386/conf/NOTES @@ -493,6 +493,9 @@ hint.mse.0.irq="5" # (requires sppp) # arl: Aironet Arlan 655 wireless adapters. # ath: Atheros a/b/g WiFi adapters (requires ath_hal and wlan) +# ce: Cronyx Tau-PCI/32 sync single/dual port G.703/E1 serial adaptor +# with 32 HDLC subchannels (requires sppp (default), or NETGRAPH if +# NETGRAPH_CRONYX is configured) # cp: Cronyx Tau-PCI sync single/dual/four port # V.35/RS-232/RS-530/RS-449/X.21/G.703/E1/E3/T3/STS-1 # serial adaptor (requires sppp (default), or NETGRAPH if @@ -529,6 +532,7 @@ device arl hint.arl.0.at="isa" hint.arl.0.irq="9" hint.arl.0.maddr="0xd0000" +device ce device cp device cs hint.cs.0.at="isa" diff --git a/sys/modules/Makefile b/sys/modules/Makefile index f9d7e5a..db3d879 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -43,6 +43,7 @@ SUBDIR= ${_3dfx} \ cd9660 \ cd9660_iconv \ cdce \ + ${_ce} \ ${_ciss} \ ${_cm} \ coda \ @@ -324,6 +325,7 @@ _awi= awi _bktr= bktr _cardbus= cardbus _cbb= cbb +_ce= ce _coff= coff _cp= cp _cpufreq= cpufreq |