Author: jhb
Date: Fri Aug 19 21:14:27 2016
New Revision: 304502
URL: https://svnweb.freebsd.org/changeset/base/304502

Log:
  Remove the si(4) driver and sicontrol(8) for Specialix serial cards.
  
  The si(4) driver supported multiport serial adapters for ISA, EISA, and
  PCI buses.  This driver does not use bus_space, instead it depends on
  direct use of the pointer returned by rman_get_virtual().  It is also
  still locked by Giant and calls for patch testing to convert it to use
  bus_space were unanswered.
  
  Relnotes:     yes

Deleted:
  head/share/man/man4/si.4
  head/sys/dev/si/
  head/sys/modules/si/
  head/tools/kerneldoc/subsys/Doxyfile-dev_si
  head/usr.sbin/sicontrol/
Modified:
  head/ObsoleteFiles.inc
  head/share/man/man4/Makefile
  head/sys/amd64/conf/NOTES
  head/sys/conf/files
  head/sys/i386/conf/NOTES
  head/sys/modules/Makefile
  head/targets/pseudo/userland/Makefile.depend
  head/usr.sbin/Makefile.amd64
  head/usr.sbin/Makefile.i386

Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc      Fri Aug 19 20:53:55 2016        (r304501)
+++ head/ObsoleteFiles.inc      Fri Aug 19 21:14:27 2016        (r304502)
@@ -38,6 +38,10 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20160819: Remove si(4) and sicontrol(8)
+OLD_FILES+=usr/share/man/man4/si.4.gz
+OLD_FILES+=usr/sbin/sicontrol
+OLD_FILES+=usr/share/man/man8/sicontrol.8.gz
 # 20160819: Remove scd(4)
 OLD_FILES+=usr/share/man/man4/scd.4.gz
 # 20160815: Remove mcd(4)

Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile        Fri Aug 19 20:53:55 2016        
(r304501)
+++ head/share/man/man4/Makefile        Fri Aug 19 21:14:27 2016        
(r304502)
@@ -453,7 +453,6 @@ MAN=        aac.4 \
        sf.4 \
        ${_sfxge.4} \
        sge.4 \
-       si.4 \
        siba.4 \
        siftr.4 \
        siis.4 \

Modified: head/sys/amd64/conf/NOTES
==============================================================================
--- head/sys/amd64/conf/NOTES   Fri Aug 19 20:53:55 2016        (r304501)
+++ head/sys/amd64/conf/NOTES   Fri Aug 19 21:14:27 2016        (r304502)
@@ -542,7 +542,6 @@ hint.pbio.0.port="0x360"
 device         smbios
 device         vpd
 device         asmc
-device         si
 device         tpm
 device         padlock_rng     # VIA Padlock RNG
 device         rdrand_rng      # Intel Bull Mountain RNG

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files Fri Aug 19 20:53:55 2016        (r304501)
+++ head/sys/conf/files Fri Aug 19 21:14:27 2016        (r304502)
@@ -2511,12 +2511,6 @@ dev/sdhci/sdhci_if.m             optional sdhci
 dev/sdhci/sdhci_pci.c          optional sdhci pci
 dev/sf/if_sf.c                 optional sf pci
 dev/sge/if_sge.c               optional sge pci
-dev/si/si.c                    optional si
-dev/si/si2_z280.c              optional si
-dev/si/si3_t225.c              optional si
-dev/si/si_eisa.c               optional si eisa
-dev/si/si_isa.c                        optional si isa
-dev/si/si_pci.c                        optional si pci
 dev/siba/siba_bwn.c            optional siba_bwn pci
 dev/siba/siba_core.c           optional siba_bwn pci
 dev/siis/siis.c                        optional siis pci

Modified: head/sys/i386/conf/NOTES
==============================================================================
--- head/sys/i386/conf/NOTES    Fri Aug 19 20:53:55 2016        (r304501)
+++ head/sys/i386/conf/NOTES    Fri Aug 19 21:14:27 2016        (r304502)
@@ -880,7 +880,6 @@ device              spic
 hint.spic.0.at="isa"
 hint.spic.0.port="0x10a0"
 device         asmc
-device         si
 device         tpm
 device         padlock_rng     # VIA Padlock RNG
 device         rdrand_rng      # Intel Bull Mountain RNG

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile   Fri Aug 19 20:53:55 2016        (r304501)
+++ head/sys/modules/Makefile   Fri Aug 19 21:14:27 2016        (r304502)
@@ -330,7 +330,6 @@ SUBDIR=     \
        ${_sf} \
        ${_sfxge} \
        sge \
-       ${_si} \
        siba_bwn \
        siftr \
        siis \
@@ -584,7 +583,6 @@ _rdma=              rdma
 .endif
 _safe=         safe
 _scsi_low=     scsi_low
-_si=           si
 _speaker=      speaker
 _splash=       splash
 _sppp=         sppp

Modified: head/targets/pseudo/userland/Makefile.depend
==============================================================================
--- head/targets/pseudo/userland/Makefile.depend        Fri Aug 19 20:53:55 
2016        (r304501)
+++ head/targets/pseudo/userland/Makefile.depend        Fri Aug 19 21:14:27 
2016        (r304502)
@@ -834,7 +834,6 @@ DIRDEPS.amd64= \
        usr.sbin/lptcontrol \
        usr.sbin/mptable \
        usr.sbin/ndiscvt \
-       usr.sbin/sicontrol \
        usr.sbin/spkrtest \
        usr.sbin/sade \
        usr.sbin/zzz
@@ -863,7 +862,6 @@ DIRDEPS.i386= \
        usr.sbin/ndiscvt \
        usr.sbin/pnpinfo \
        usr.sbin/sade \
-       usr.sbin/sicontrol \
        usr.sbin/spkrtest \
        usr.sbin/zzz \
        usr.sbin/acpi \

Modified: head/usr.sbin/Makefile.amd64
==============================================================================
--- head/usr.sbin/Makefile.amd64        Fri Aug 19 20:53:55 2016        
(r304501)
+++ head/usr.sbin/Makefile.amd64        Fri Aug 19 21:14:27 2016        
(r304502)
@@ -29,6 +29,5 @@ SUBDIR+=      mptable
 .if ${MK_NDIS} != "no"
 SUBDIR+=       ndiscvt
 .endif
-SUBDIR+=       sicontrol
 SUBDIR+=       spkrtest
 SUBDIR+=       zzz

Modified: head/usr.sbin/Makefile.i386
==============================================================================
--- head/usr.sbin/Makefile.i386 Fri Aug 19 20:53:55 2016        (r304501)
+++ head/usr.sbin/Makefile.i386 Fri Aug 19 21:14:27 2016        (r304502)
@@ -17,7 +17,6 @@ SUBDIR+=      mptable
 SUBDIR+=       ndiscvt
 .endif
 SUBDIR+=       pnpinfo
-SUBDIR+=       sicontrol
 SUBDIR+=       spkrtest
 SUBDIR+=       zzz
 
_______________________________________________
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