svn commit: r304187 - in head: . share/man/man4 sys/conf sys/dev/mcd sys/modules sys/modules/mcd

John Baldwin jhb at FreeBSD.org
Mon Aug 15 20:38:03 UTC 2016


Author: jhb
Date: Mon Aug 15 20:38:02 2016
New Revision: 304187
URL: https://svnweb.freebsd.org/changeset/base/304187

Log:
  Remove the mcd(4) driver for Mitsumi CD-ROM players.
  
  This is a driver for a pre-ATAPI ISA CD-ROM adapter.  As noted in
  the manpage, this driver is only useful as a backend to cdcontrol to
  play audio CDs since it doesn't use DMA, so its data performance is
  "abysmal" (and that was true in the mid 90's).

Deleted:
  head/share/man/man4/mcd.4
  head/sys/dev/mcd/
  head/sys/modules/mcd/
Modified:
  head/ObsoleteFiles.inc
  head/share/man/man4/Makefile
  head/sys/conf/NOTES
  head/sys/conf/files
  head/sys/modules/Makefile

Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc	Mon Aug 15 20:17:48 2016	(r304186)
+++ head/ObsoleteFiles.inc	Mon Aug 15 20:38:02 2016	(r304187)
@@ -38,6 +38,8 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20160815: Remove mcd(4)
+OLD_FILES+=usr/share/man/man4/mcd.4.gz
 # 20160703: POSIXify locales with variants
 OLD_FILES+=usr/share/locale/zh_Hant_TW.UTF-8/LC_COLLATE
 OLD_FILES+=usr/share/locale/zh_Hant_TW.UTF-8/LC_CTYPE

Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile	Mon Aug 15 20:17:48 2016	(r304186)
+++ head/share/man/man4/Makefile	Mon Aug 15 20:38:02 2016	(r304187)
@@ -269,7 +269,6 @@ MAN=	aac.4 \
 	mac_stub.4 \
 	mac_test.4 \
 	malo.4 \
-	mcd.4 \
 	md.4 \
 	mdio.4 \
 	me.4 \

Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES	Mon Aug 15 20:17:48 2016	(r304186)
+++ head/sys/conf/NOTES	Mon Aug 15 20:38:02 2016	(r304187)
@@ -2412,15 +2412,10 @@ options		SND_OLDSTEREO
 # Miscellaneous hardware:
 #
 # scd: Sony CD-ROM using proprietary (non-ATAPI) interface
-# mcd: Mitsumi CD-ROM using proprietary (non-ATAPI) interface
 # bktr: Brooktree bt848/848a/849a/878/879 video capture and TV Tuner board
 # joy: joystick (including IO DATA PCJOY PC Card joystick)
 # cmx: OmniKey CardMan 4040 pccard smartcard reader
 
-# Mitsumi CD-ROM
-device		mcd
-hint.mcd.0.at="isa"
-hint.mcd.0.port="0x300"
 # for the Sony CDU31/33A CDROM
 device		scd
 hint.scd.0.at="isa"

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Mon Aug 15 20:17:48 2016	(r304186)
+++ head/sys/conf/files	Mon Aug 15 20:38:02 2016	(r304187)
@@ -2018,8 +2018,6 @@ dev/malo/if_malohal.c		optional malo
 dev/malo/if_malo_pci.c		optional malo pci
 dev/mc146818/mc146818.c		optional mc146818
 dev/mca/mca_bus.c		optional mca
-dev/mcd/mcd.c			optional mcd isa nowerror
-dev/mcd/mcd_isa.c		optional mcd isa nowerror
 dev/md/md.c			optional md
 dev/mdio/mdio_if.m		optional miiproxy | mdio
 dev/mdio/mdio.c			optional miiproxy | mdio

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Mon Aug 15 20:17:48 2016	(r304186)
+++ head/sys/modules/Makefile	Mon Aug 15 20:38:02 2016	(r304187)
@@ -224,7 +224,6 @@ SUBDIR=	\
 	mac_stub \
 	mac_test \
 	malo \
-	mcd \
 	md \
 	mdio \
 	mem \


More information about the svn-src-all mailing list