svn commit: r347909 - in head: . share/man/man4/man4.i386 sys/conf sys/dev/cs sys/i386/conf sys/modules sys/modules/cs

Brooks Davis brooks at FreeBSD.org
Fri May 17 15:22:48 UTC 2019


Author: brooks
Date: Fri May 17 15:22:45 2019
New Revision: 347909
URL: https://svnweb.freebsd.org/changeset/base/347909

Log:
  FCP-101: Remove cs(4).
  
  Relnotes:	yes
  FCP:		https://github.com/freebsd/fcp/blob/master/fcp-0101.md
  Reviewed by:	jhb, imp
  Differential Revision:	https://reviews.freebsd.org/D20230

Deleted:
  head/share/man/man4/man4.i386/cs.4
  head/sys/dev/cs/
  head/sys/modules/cs/
Modified:
  head/ObsoleteFiles.inc
  head/share/man/man4/man4.i386/Makefile
  head/sys/conf/files
  head/sys/i386/conf/GENERIC
  head/sys/i386/conf/NOTES
  head/sys/modules/Makefile

Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc	Fri May 17 15:20:51 2019	(r347908)
+++ head/ObsoleteFiles.inc	Fri May 17 15:22:45 2019	(r347909)
@@ -40,6 +40,7 @@
 
 # 20190518: Remove obsolete 10 and 10/100 ethernet drivers.
 OLD_FILES+=usr/share/man/man4/bm.4
+OLD_FILES+=usr/share/man/man4/cs.4
 # 20190513: libcap_sysctl interface change
 OLD_FILES+=lib/casper/libcap_sysctl.1
 # 20190509: tests/sys/opencrypto requires the net/py-dpkt package.

Modified: head/share/man/man4/man4.i386/Makefile
==============================================================================
--- head/share/man/man4/man4.i386/Makefile	Fri May 17 15:20:51 2019	(r347908)
+++ head/share/man/man4/man4.i386/Makefile	Fri May 17 15:22:45 2019	(r347909)
@@ -6,7 +6,6 @@ MAN=	apm.4 \
 	ce.4 \
 	cp.4 \
 	CPU_ELAN.4 \
-	cs.4 \
 	ctau.4 \
 	cx.4 \
 	ep.4 \

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Fri May 17 15:20:51 2019	(r347908)
+++ head/sys/conf/files	Fri May 17 15:22:45 2019	(r347909)
@@ -1358,9 +1358,6 @@ dev/ciss/ciss.c			optional ciss
 dev/cmx/cmx.c			optional cmx
 dev/cmx/cmx_pccard.c		optional cmx pccard
 dev/cpufreq/ichss.c		optional cpufreq pci
-dev/cs/if_cs.c			optional cs
-dev/cs/if_cs_isa.c		optional cs isa
-dev/cs/if_cs_pccard.c		optional cs pccard
 dev/cxgb/cxgb_main.c		optional cxgb pci \
 	compile-with "${NORMAL_C} -I$S/dev/cxgb"
 dev/cxgb/cxgb_sge.c		optional cxgb pci \

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Fri May 17 15:20:51 2019	(r347908)
+++ head/sys/i386/conf/GENERIC	Fri May 17 15:22:45 2019	(r347909)
@@ -272,7 +272,6 @@ device		wb			# Winbond W89C840F
 device		xl			# 3Com 3c90x (``Boomerang'', ``Cyclone'')
 
 # ISA Ethernet NICs.  pccard NICs included.
-device		cs			# Crystal Semiconductor CS89x0 NIC
 # 'device ed' requires 'device miibus'
 device		ed			# NE[12]000, SMC Ultra, 3c503, DS8390 cards
 device		ex			# Intel EtherExpress Pro/10 and Pro/10+

Modified: head/sys/i386/conf/NOTES
==============================================================================
--- head/sys/i386/conf/NOTES	Fri May 17 15:20:51 2019	(r347908)
+++ head/sys/i386/conf/NOTES	Fri May 17 15:22:45 2019	(r347909)
@@ -502,7 +502,6 @@ device		cpufreq
 #       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
 #       NETGRAPH_CRONYX is configured)
-# cs:   IBM Etherjet and other Crystal Semi CS89x0-based adapters
 # ctau: Cronyx Tau sync dual port V.35/RS-232/RS-530/RS-449/X.21/G.703/E1
 #       serial adaptor (requires sppp (default), or NETGRAPH if
 #       NETGRAPH_CRONYX is configured)
@@ -529,7 +528,6 @@ device		cpufreq
 device          bxe             # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
 device		ce
 device		cp
-device		cs		# Crystal Semiconductor CS89x0 NIC
 hint.cs.0.at="isa"
 hint.cs.0.port="0x300"
 device		ctau

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Fri May 17 15:20:51 2019	(r347908)
+++ head/sys/modules/Makefile	Fri May 17 15:22:45 2019	(r347909)
@@ -98,7 +98,6 @@ SUBDIR=	\
 	${_cpufreq} \
 	${_crypto} \
 	${_cryptodev} \
-	${_cs} \
 	${_ctau} \
 	ctl \
 	${_cxgb} \
@@ -600,7 +599,6 @@ _cardbus=	cardbus
 _cbb=		cbb
 _cpuctl=	cpuctl
 _cpufreq=	cpufreq
-_cs=		cs
 _dpms=		dpms
 _ed=		ed
 _em=		em


More information about the svn-src-head mailing list