From owner-cvs-src@FreeBSD.ORG Mon Aug 30 23:03:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B803D16A4CE; Mon, 30 Aug 2004 23:03:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DD2043D1D; Mon, 30 Aug 2004 23:03:58 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UN3wMV032137; Mon, 30 Aug 2004 23:03:58 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UN3wnR032136; Mon, 30 Aug 2004 23:03:58 GMT (envelope-from peter) Message-Id: <200408302303.i7UN3wnR032136@repoman.freebsd.org> From: Peter Wemm Date: Mon, 30 Aug 2004 23:03:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/config config.h config.y configvers.h lang.l mkheaders.c mkmakefile.c src/sys/coda coda_fbsd.c coda_psdev.c coda_vfsops.c src/sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:03:59 -0000 peter 2004-08-30 23:03:58 UTC FreeBSD src repository Modified files: usr.sbin/config config.h config.y configvers.h lang.l mkheaders.c mkmakefile.c sys/coda coda_fbsd.c coda_psdev.c coda_vfsops.c sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 NOTES files files.pc98 options options.pc98 sys/i386/conf NOTES sys/i4b/driver i4b_ing.c i4b_ipr.c i4b_isppp.c i4b_rbch.c i4b_tel.c i4b_trace.c sys/i4b/layer4 i4b_i4bdrv.c i4b_l4.c sys/pc98/conf GENERIC sys/pc98/pc98 atapi.c wd.c Log: Kill count device support from config. I've changed the last few remaining consumers to have the count passed as an option. This is i4b, pc98/wdc, and coda. Bump configvers.h from 500013 to 600000. Remove heuristics that tried to parse "device ed5" as 5 units of the ed device. This broke things like the snd_emu10k1 device, which required quotes to make it parse right. The no-longer-needed quotes have been removed from NOTES, GENERIC etc. eg, I've removed the quotes from: device snd_maestro device "snd_maestro3" device snd_mss I believe everything will still compile and work after this. Revision Changes Path 1.37 +1 -1 src/sys/coda/coda_fbsd.c 1.31 +1 -1 src/sys/coda/coda_psdev.c 1.52 +1 -1 src/sys/coda/coda_vfsops.c 1.131 +1 -1 src/sys/conf/Makefile.alpha 1.12 +1 -1 src/sys/conf/Makefile.amd64 1.2 +1 -1 src/sys/conf/Makefile.arm 1.261 +1 -1 src/sys/conf/Makefile.i386 1.58 +1 -1 src/sys/conf/Makefile.ia64 1.162 +1 -1 src/sys/conf/Makefile.pc98 1.271 +1 -1 src/sys/conf/Makefile.powerpc 1.29 +1 -1 src/sys/conf/Makefile.sparc64 1.1270 +17 -16 src/sys/conf/NOTES 1.948 +7 -7 src/sys/conf/files 1.306 +2 -2 src/sys/conf/files.pc98 1.480 +9 -0 src/sys/conf/options 1.180 +4 -0 src/sys/conf/options.pc98 1.1172 +19 -13 src/sys/i386/conf/NOTES 1.23 +0 -2 src/sys/i4b/driver/i4b_ing.c 1.29 +0 -2 src/sys/i4b/driver/i4b_ipr.c 1.26 +1 -1 src/sys/i4b/driver/i4b_isppp.c 1.34 +1 -1 src/sys/i4b/driver/i4b_rbch.c 1.35 +1 -1 src/sys/i4b/driver/i4b_tel.c 1.31 +1 -1 src/sys/i4b/driver/i4b_trace.c 1.42 +1 -5 src/sys/i4b/layer4/i4b_i4bdrv.c 1.18 +1 -6 src/sys/i4b/layer4/i4b_l4.c 1.257 +3 -2 src/sys/pc98/conf/GENERIC 1.11 +4 -9 src/sys/pc98/pc98/atapi.c 1.139 +1 -5 src/sys/pc98/pc98/wd.c 1.55 +3 -5 src/usr.sbin/config/config.h 1.64 +2 -12 src/usr.sbin/config/config.y 1.33 +1 -1 src/usr.sbin/config/configvers.h 1.38 +2 -17 src/usr.sbin/config/lang.l 1.30 +0 -156 src/usr.sbin/config/mkheaders.c 1.81 +4 -14 src/usr.sbin/config/mkmakefile.c