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

Brooks Davis brooks at FreeBSD.org
Fri May 17 15:23:21 UTC 2019


Author: brooks
Date: Fri May 17 15:23:18 2019
New Revision: 347913
URL: https://svnweb.freebsd.org/changeset/base/347913

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

Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc	Fri May 17 15:23:10 2019	(r347912)
+++ head/ObsoleteFiles.inc	Fri May 17 15:23:18 2019	(r347913)
@@ -46,6 +46,7 @@ OLD_FILES+=usr/share/man/man4/if_de.4
 OLD_FILES+=usr/share/man/man4/ed.4
 OLD_FILES+=usr/share/man/man4/if_ed.4
 OLD_FILES+=usr/share/man/man4/ep.4
+OLD_FILES+=usr/share/man/man4/ex.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:23:10 2019	(r347912)
+++ head/share/man/man4/man4.i386/Makefile	Fri May 17 15:23:18 2019	(r347913)
@@ -8,7 +8,6 @@ MAN=	apm.4 \
 	CPU_ELAN.4 \
 	ctau.4 \
 	cx.4 \
-	ex.4 \
 	fe.4 \
 	glxiic.4 \
 	glxsb.4 \

Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES	Fri May 17 15:23:10 2019	(r347912)
+++ head/sys/conf/NOTES	Fri May 17 15:23:18 2019	(r347913)
@@ -1937,8 +1937,6 @@ device		xmphy		# XaQti XMAC II
 #       LinkSys LNE100TX, LNE100TX V2.0, Jaton XpressNet, Alfa Inc GFC2204,
 #       KNE110TX.
 # em:   Intel Pro/1000 Gigabit Ethernet 82542, 82543, 82544 based adapters.
-# ex:   Intel EtherExpress Pro/10 and other i82595-based adapters,
-#       Olicom Ethernet PC Card devices.
 # fe:   Fujitsu MB86960A/MB86965A Ethernet
 # fxp:  Intel EtherExpress Pro/100B
 #	(hint of prefer_iomap can be done to prefer I/O instead of Mem mapping)
@@ -2042,7 +2040,6 @@ device		xmphy		# XaQti XMAC II
 
 # Order for ISA devices is important here
 
-device		ex
 device		fe
 hint.fe.0.at="isa"
 hint.fe.0.port="0x300"

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Fri May 17 15:23:10 2019	(r347912)
+++ head/sys/conf/files	Fri May 17 15:23:18 2019	(r347913)
@@ -1664,9 +1664,6 @@ dev/evdev/evdev.c			optional evdev
 dev/evdev/evdev_mt.c			optional evdev
 dev/evdev/evdev_utils.c			optional evdev
 dev/evdev/uinput.c			optional evdev uinput
-dev/ex/if_ex.c			optional ex
-dev/ex/if_ex_isa.c		optional ex isa
-dev/ex/if_ex_pccard.c		optional ex pccard
 dev/exca/exca.c			optional cbb
 dev/extres/clk/clk.c		optional ext_resources clk fdt
 dev/extres/clk/clkdev_if.m	optional ext_resources clk fdt

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Fri May 17 15:23:10 2019	(r347912)
+++ head/sys/i386/conf/GENERIC	Fri May 17 15:23:18 2019	(r347913)
@@ -271,7 +271,6 @@ device		wb			# Winbond W89C840F
 device		xl			# 3Com 3c90x (``Boomerang'', ``Cyclone'')
 
 # ISA Ethernet NICs.  pccard NICs included.
-device		ex			# Intel EtherExpress Pro/10 and Pro/10+
 device		fe			# Fujitsu MB8696x based cards
 device		sn			# SMC's 9000 series of Ethernet chips
 device		xe			# Xircom pccard Ethernet

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Fri May 17 15:23:10 2019	(r347912)
+++ head/sys/modules/Makefile	Fri May 17 15:23:18 2019	(r347913)
@@ -114,7 +114,6 @@ SUBDIR=	\
 	esp \
 	${_et} \
 	evdev \
-	${_ex} \
 	${_exca} \
 	ext2fs \
 	fdc \
@@ -747,7 +746,6 @@ _sbni=		sbni
 .if ${MK_SOURCELESS_UCODE} != "no"
 _ctau=		ctau
 .endif
-_ex=		ex
 .endif
 
 .if ${MACHINE_CPUARCH} == "arm"


More information about the svn-src-all mailing list