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

Log:
  FCP-101: Remove tl(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/tl.4
  head/sys/dev/tl/
  head/sys/modules/tl/
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:52 2019        (r347917)
+++ head/ObsoleteFiles.inc      Fri May 17 15:24:00 2019        (r347918)
@@ -54,6 +54,8 @@ OLD_FILES+=usr/share/man/man4/sf.4
 OLD_FILES+=usr/share/man/man4/if_sf.4
 OLD_FILES+=usr/share/man/man4/sn.4
 OLD_FILES+=usr/share/man/man4/if_sn.4
+OLD_FILES+=usr/share/man/man4/tl.4
+OLD_FILES+=usr/share/man/man4/if_tl.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:52 2019        
(r347917)
+++ head/share/man/man4/Makefile        Fri May 17 15:24:00 2019        
(r347918)
@@ -517,7 +517,6 @@ MAN=        aac.4 \
        textdump.4 \
        ti.4 \
        timecounters.4 \
-       tl.4 \
        ${_tpm.4} \
        trm.4 \
        tty.4 \
@@ -717,7 +716,6 @@ MLINKS+=syscons.4 sc.4
 MLINKS+=tap.4 if_tap.4
 MLINKS+=tdfx.4 tdfx_linux.4
 MLINKS+=ti.4 if_ti.4
-MLINKS+=tl.4 if_tl.4
 MLINKS+=tun.4 if_tun.4
 MLINKS+=tx.4 if_tx.4
 MLINKS+=txp.4 if_txp.4

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC Fri May 17 15:23:52 2019        (r347917)
+++ head/sys/amd64/conf/GENERIC Fri May 17 15:24:00 2019        (r347918)
@@ -278,7 +278,6 @@ device              sis                     # Silicon 
Integrated Systems SiS 900/SiS
 device         sk                      # SysKonnect SK-984x & SK-982x gigabit 
Ethernet
 device         ste                     # Sundance ST201 (D-Link DFE-550TX)
 device         stge                    # Sundance/Tamarack TC9021 gigabit 
Ethernet
-device         tl                      # Texas Instruments ThunderLAN
 device         tx                      # SMC EtherPower II (83c170 ``EPIC'')
 device         vge                     # VIA VT612x gigabit Ethernet
 device         vr                      # VIA Rhine, Rhine II

Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES Fri May 17 15:23:52 2019        (r347917)
+++ head/sys/conf/NOTES Fri May 17 15:24:00 2019        (r347918)
@@ -1995,11 +1995,6 @@ device           xmphy           # XaQti XMAC II
 #       Tigon 1 and Tigon 2 chipsets.  This includes the Alteon AceNIC, the
 #       3Com 3c985, the Netgear GA620 and various others.  Note that you will
 #       probably want to bump up kern.ipc.nmbclusters a lot to use this driver.
-# tl:   Support for the Texas Instruments TNETE100 series 'ThunderLAN'
-#       cards and integrated ethernet controllers.  This includes several
-#       Compaq Netelligent 10/100 cards and the built-in ethernet controllers
-#       in several Compaq Prosignia, Proliant and Deskpro systems.  It also
-#       supports several Olicom 10Mbps and 10/100 boards.
 # tx:   SMC 9432 TX, BTX and FTX cards. (SMC EtherPower II series)
 # txp: Support for 3Com 3cR990 cards with the "Typhoon" chipset
 # vr:   Support for various fast ethernet adapters based on the VIA
@@ -2060,7 +2055,6 @@ device            sis             # Silicon Integrated 
Systems SiS 900/SiS 
 device         sk              # SysKonnect SK-984x & SK-982x gigabit Ethernet
 device         ste             # Sundance ST201 (D-Link DFE-550TX)
 device         stge            # Sundance/Tamarack TC9021 gigabit Ethernet
-device         tl              # Texas Instruments ThunderLAN
 device         tx              # SMC EtherPower II (83c170 ``EPIC'')
 device         vr              # VIA Rhine, Rhine II
 device         vte             # DM&P Vortex86 RDC R6040 Fast Ethernet

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files Fri May 17 15:23:52 2019        (r347917)
+++ head/sys/conf/files Fri May 17 15:24:00 2019        (r347918)
@@ -3135,7 +3135,6 @@ dev/tcp_log/tcp_log_dev.c optional tcp_blackbox inet |
 dev/tdfx/tdfx_linux.c          optional tdfx_linux tdfx compat_linux
 dev/tdfx/tdfx_pci.c            optional tdfx pci
 dev/ti/if_ti.c                 optional ti pci
-dev/tl/if_tl.c                 optional tl pci
 dev/trm/trm.c                  optional trm
 dev/twa/tw_cl_init.c           optional twa \
        compile-with "${NORMAL_C} -I$S/dev/twa"

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC  Fri May 17 15:23:52 2019        (r347917)
+++ head/sys/i386/conf/GENERIC  Fri May 17 15:24:00 2019        (r347918)
@@ -260,7 +260,6 @@ device              sis                     # Silicon 
Integrated Systems SiS 900/SiS
 device         sk                      # SysKonnect SK-984x & SK-982x gigabit 
Ethernet
 device         ste                     # Sundance ST201 (D-Link DFE-550TX)
 device         stge                    # Sundance/Tamarack TC9021 gigabit 
Ethernet
-device         tl                      # Texas Instruments ThunderLAN
 device         tx                      # SMC EtherPower II (83c170 ``EPIC'')
 device         vge                     # VIA VT612x gigabit Ethernet
 device         vr                      # VIA Rhine, Rhine II

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile   Fri May 17 15:23:52 2019        (r347917)
+++ head/sys/modules/Makefile   Fri May 17 15:24:00 2019        (r347918)
@@ -348,7 +348,6 @@ SUBDIR=     \
        sysvipc \
        tcp \
        ${_ti} \
-       tl \
        tmpfs \
        ${_toecore} \
        ${_tpm} \

Modified: head/sys/sparc64/conf/GENERIC
==============================================================================
--- head/sys/sparc64/conf/GENERIC       Fri May 17 15:23:52 2019        
(r347917)
+++ head/sys/sparc64/conf/GENERIC       Fri May 17 15:24:00 2019        
(r347918)
@@ -207,7 +207,6 @@ device              sis             # Silicon Integrated 
Systems SiS 900/SiS 
 device         sk              # SysKonnect SK-984x & SK-982x gigabit Ethernet
 device         ste             # Sundance ST201 (D-Link DFE-550TX)
 device         stge            # Sundance/Tamarack TC9021 gigabit Ethernet
-#device                tl              # Texas Instruments ThunderLAN
 #device                tx              # SMC EtherPower II (83c170 ``EPIC'')
 device         vr              # VIA Rhine, Rhine II
 #device                wb              # Winbond W89C840F
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to