svn commit: r347921 - in head: . share/man/man4/man4.i386 sys/amd64/conf sys/conf sys/dev/vx sys/i386/conf sys/modules sys/modules/vx sys/sparc64/conf

Brooks Davis brooks at FreeBSD.org
Fri May 17 15:24:31 UTC 2019


Author: brooks
Date: Fri May 17 15:24:26 2019
New Revision: 347921
URL: https://svnweb.freebsd.org/changeset/base/347921

Log:
  FCP-101: Remove vx(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/vx.4
  head/sys/dev/vx/
  head/sys/modules/vx/
Modified:
  head/ObsoleteFiles.inc
  head/share/man/man4/man4.i386/Makefile
  head/sys/amd64/conf/GENERIC
  head/sys/conf/NOTES
  head/sys/i386/conf/GENERIC
  head/sys/modules/Makefile
  head/sys/sparc64/conf/GENERIC

Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc	Fri May 17 15:24:17 2019	(r347920)
+++ head/ObsoleteFiles.inc	Fri May 17 15:24:26 2019	(r347921)
@@ -60,6 +60,7 @@ OLD_FILES+=usr/share/man/man4/tx.4
 OLD_FILES+=usr/share/man/man4/if_tx.4
 OLD_FILES+=usr/share/man/man4/txp.4
 OLD_FILES+=usr/share/man/man4/if_txp.4
+OLD_FILES+=usr/share/man/man4/vx.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:24:17 2019	(r347920)
+++ head/share/man/man4/man4.i386/Makefile	Fri May 17 15:24:26 2019	(r347921)
@@ -19,8 +19,7 @@ MAN=	apm.4 \
 	pnpbios.4 \
 	sbni.4 \
 	smapi.4 \
-	vpd.4 \
-	vx.4
+	vpd.4
 
 MLINKS=	CPU_ELAN.4 CPU_SOEKRIS.4
 MLINKS+=pae.4 PAE.4

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Fri May 17 15:24:17 2019	(r347920)
+++ head/sys/amd64/conf/GENERIC	Fri May 17 15:24:26 2019	(r347921)
@@ -247,7 +247,6 @@ device		vmx			# VMware VMXNET3 Ethernet
 device		bxe			# Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
 device		le			# AMD Am7900 LANCE and Am79C9xx PCnet
 device		ti			# Alteon Networks Tigon I/II gigabit Ethernet
-device		vx			# 3Com 3c590, 3c595 (``Vortex'')
 
 # PCI Ethernet NICs that use the common MII bus controller code.
 # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!

Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES	Fri May 17 15:24:17 2019	(r347920)
+++ head/sys/conf/NOTES	Fri May 17 15:24:26 2019	(r347921)
@@ -2000,7 +2000,6 @@ device		xmphy		# XaQti XMAC II
 #       including the D-Link DFE520TX and D-Link DFE530TX (see 'rl' for
 #       DFE530TX+), the Hawking Technologies PN102TX, and the AOpen/Acer ALN-320.
 # vte:  DM&P Vortex86 RDC R6040 Fast Ethernet
-# vx:   3Com 3C590 and 3C595
 # wb:   Support for fast ethernet adapters based on the Winbond W89C840F chip.
 #       Note: this is not the same as the Winbond W89C940F, which is a
 #       NE2000 clone.
@@ -2073,7 +2072,6 @@ device		le		# AMD Am7900 LANCE and Am79C9xx PCnet
 device		mxge		# Myricom Myri-10G 10GbE NIC
 device		oce		# Emulex 10 GbE (OneConnect Ethernet)
 device		ti		# Alteon Networks Tigon I/II gigabit Ethernet
-device		vx		# 3Com 3c590, 3c595 (``Vortex'')
 
 # PCI IEEE 802.11 Wireless NICs
 device		ath		# Atheros pci/cardbus NIC's

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Fri May 17 15:24:17 2019	(r347920)
+++ head/sys/i386/conf/GENERIC	Fri May 17 15:24:26 2019	(r347921)
@@ -229,7 +229,6 @@ device		vmx			# VMware VMXNET3 Ethernet
 device		bxe			# Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
 device		le			# AMD Am7900 LANCE and Am79C9xx PCnet
 device		ti			# Alteon Networks Tigon I/II gigabit Ethernet
-device		vx			# 3Com 3c590, 3c595 (``Vortex'')
 
 # PCI Ethernet NICs that use the common MII bus controller code.
 # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Fri May 17 15:24:17 2019	(r347920)
+++ head/sys/modules/Makefile	Fri May 17 15:24:26 2019	(r347921)
@@ -374,7 +374,6 @@ SUBDIR=	\
 	${_vpo} \
 	vr \
 	vte \
-	vx \
 	wb \
 	${_wbwd} \
 	${_wi} \

Modified: head/sys/sparc64/conf/GENERIC
==============================================================================
--- head/sys/sparc64/conf/GENERIC	Fri May 17 15:24:17 2019	(r347920)
+++ head/sys/sparc64/conf/GENERIC	Fri May 17 15:24:26 2019	(r347921)
@@ -187,7 +187,6 @@ device		iflib
 device		em		# Intel PRO/1000 adapter Gigabit Ethernet Card
 device		le		# AMD Am7900 LANCE and Am79C9xx PCnet
 device		ti		# Alteon Networks Tigon I/II gigabit Ethernet
-#device		vx		# 3Com 3c590, 3c595 (``Vortex'')
 
 # PCI Ethernet NICs that use the common MII bus controller code.
 # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!


More information about the svn-src-all mailing list