svn commit: r347915 - in head: . share/man/man4 sys/amd64/conf sys/conf sys/dev/pcn sys/i386/conf sys/modules sys/modules/pcn sys/sparc64/conf
Brooks Davis
brooks at FreeBSD.org
Fri May 17 15:23:39 UTC 2019
Author: brooks
Date: Fri May 17 15:23:34 2019
New Revision: 347915
URL: https://svnweb.freebsd.org/changeset/base/347915
Log:
FCP-101: Remove pcn(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/pcn.4
head/sys/dev/pcn/
head/sys/modules/pcn/
Modified:
head/ObsoleteFiles.inc
head/share/man/man4/Makefile
head/sys/amd64/conf/GENERIC
head/sys/conf/NOTES
head/sys/conf/files
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:23:26 2019 (r347914)
+++ head/ObsoleteFiles.inc Fri May 17 15:23:34 2019 (r347915)
@@ -48,6 +48,8 @@ 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
OLD_FILES+=usr/share/man/man4/fe.4
+OLD_FILES+=usr/share/man/man4/pcn.4
+OLD_FILES+=usr/share/man/man4/if_pcn.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/Makefile
==============================================================================
--- head/share/man/man4/Makefile Fri May 17 15:23:26 2019 (r347914)
+++ head/share/man/man4/Makefile Fri May 17 15:23:34 2019 (r347915)
@@ -401,7 +401,6 @@ MAN= aac.4 \
pcib.4 \
pcic.4 \
pcm.4 \
- pcn.4 \
${_pf.4} \
${_pflog.4} \
${_pfsync.4} \
@@ -692,7 +691,6 @@ MLINKS+=ow.4 onewire.4
MLINKS+=pccbb.4 cbb.4
MLINKS+=pcm.4 snd.4 \
pcm.4 sound.4
-MLINKS+=pcn.4 if_pcn.4
MLINKS+=pms.4 pmspcv.4
MLINKS+=ral.4 if_ral.4
MLINKS+=re.4 if_re.4
Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC Fri May 17 15:23:26 2019 (r347914)
+++ head/sys/amd64/conf/GENERIC Fri May 17 15:23:34 2019 (r347915)
@@ -271,7 +271,6 @@ device lge # Level 1 LXT1001 gigabit Ethernet
device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
device nfe # nVidia nForce MCP on-board Ethernet
device nge # NatSemi DP83820 gigabit Ethernet
-device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
device re # RealTek 8139C+/8169/8169S/8110S
device rl # RealTek 8129/8139
device sf # Adaptec AIC-6915 (``Starfire'')
Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES Fri May 17 15:23:26 2019 (r347914)
+++ head/sys/conf/NOTES Fri May 17 15:23:34 2019 (r347915)
@@ -1965,12 +1965,6 @@ device xmphy # XaQti XMAC II
# GigaNIX 1000TA and 1000TPC, the Addtron AEG320T, the Surecom
# EP-320G-TX and the Netgear GA622T.
# oce: Emulex 10 Gbit adapters (OneConnect Ethernet)
-# pcn: Support for PCI fast ethernet adapters based on the AMD Am79c97x
-# PCnet-FAST, PCnet-FAST+, PCnet-FAST III, PCnet-PRO and PCnet-Home
-# chipsets. These can also be handled by the le(4) driver if the
-# pcn(4) driver is left out of the kernel. The le(4) driver does not
-# support the additional features like the MII bus and burst mode of
-# the PCnet-FAST and greater chipsets though.
# ral: Ralink Technology IEEE 802.11 wireless adapter
# re: RealTek 8139C+/8169/816xS/811xS/8101E PCI/PCIe Ethernet adapter
# rl: Support for PCI fast ethernet adapters based on the RealTek 8129/8139
@@ -2072,7 +2066,6 @@ device my # Myson Fast Ethernet (MTD80X, MTD89X)
device nge # NatSemi DP83820 gigabit Ethernet
device re # RealTek 8139C+/8169/8169S/8110S
device rl # RealTek 8129/8139
-device pcn # AMD Am79C97x PCI 10/100 NICs
device sf # Adaptec AIC-6915 (``Starfire'')
device sge # Silicon Integrated Systems SiS190/191
device sis # Silicon Integrated Systems SiS 900/SiS 7016
Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files Fri May 17 15:23:26 2019 (r347914)
+++ head/sys/conf/files Fri May 17 15:23:34 2019 (r347915)
@@ -2563,7 +2563,6 @@ dev/pci/pci_user.c optional pci
dev/pci/pcib_if.m standard
dev/pci/pcib_support.c standard
dev/pci/vga_pci.c optional pci
-dev/pcn/if_pcn.c optional pcn pci
dev/pms/freebsd/driver/ini/src/agtiapi.c optional pmspcv \
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
dev/pms/RefTisa/sallsdk/spc/sadisc.c optional pmspcv \
Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC Fri May 17 15:23:26 2019 (r347914)
+++ head/sys/i386/conf/GENERIC Fri May 17 15:23:34 2019 (r347915)
@@ -253,7 +253,6 @@ device lge # Level 1 LXT1001 gigabit Ethernet
device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
device nfe # nVidia nForce MCP on-board Ethernet
device nge # NatSemi DP83820 gigabit Ethernet
-device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
device re # RealTek 8139C+/8169/8169S/8110S
device rl # RealTek 8129/8139
device sf # Adaptec AIC-6915 (``Starfire'')
Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile Fri May 17 15:23:26 2019 (r347914)
+++ head/sys/modules/Makefile Fri May 17 15:23:34 2019 (r347915)
@@ -283,7 +283,6 @@ SUBDIR= \
${_padlock_rng} \
${_pccard} \
${_pcfclock} \
- pcn \
${_pf} \
${_pflog} \
${_pfsync} \
Modified: head/sys/sparc64/conf/GENERIC
==============================================================================
--- head/sys/sparc64/conf/GENERIC Fri May 17 15:23:26 2019 (r347914)
+++ head/sys/sparc64/conf/GENERIC Fri May 17 15:23:34 2019 (r347915)
@@ -201,7 +201,6 @@ device fxp # Intel EtherExpress PRO/100B (82557, 825
device gem # Sun GEM/Sun ERI/Apple GMAC
device hme # Sun HME (Happy Meal Ethernet)
device nge # NatSemi DP83820 gigabit Ethernet
-#device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
device re # RealTek 8139C+/8169/8169S/8110S
device rl # RealTek 8129/8139
device sf # Adaptec AIC-6915 (``Starfire'')
More information about the svn-src-all
mailing list