From owner-svn-src-head@freebsd.org Fri Aug 19 21:14:29 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F7E2BC0556; Fri, 19 Aug 2016 21:14:29 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2FAED1564; Fri, 19 Aug 2016 21:14:29 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7JLESZW005669; Fri, 19 Aug 2016 21:14:28 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7JLER34005659; Fri, 19 Aug 2016 21:14:27 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201608192114.u7JLER34005659@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Fri, 19 Aug 2016 21:14:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r304502 - in head: . share/man/man4 sys/amd64/conf sys/conf sys/dev/si sys/i386/conf sys/modules sys/modules/si targets/pseudo/userland tools/kerneldoc/subsys usr.sbin usr.sbin/sicontrol X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2016 21:14:29 -0000 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