From owner-svn-src-head@FreeBSD.ORG Wed Oct 14 02:49:41 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27F60106566B; Wed, 14 Oct 2009 02:49:41 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id DC4FA8FC12; Wed, 14 Oct 2009 02:49:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id n9E27V7x016011; Tue, 13 Oct 2009 20:07:31 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 13 Oct 2009 20:07:41 -0600 (MDT) Message-Id: <20091013.200741.1973690373.imp@bsdimp.com> To: jhb@freebsd.org From: "M. Warner Losh" In-Reply-To: <200910131510.48144.jhb@freebsd.org> References: <200910131904.n9DJ41QC013817@svn.freebsd.org> <200910131510.48144.jhb@freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r198044 - head/sys/arm/conf X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 14 Oct 2009 02:49:41 -0000 In message: <200910131510.48144.jhb@freebsd.org> John Baldwin writes: : On Tuesday 13 October 2009 3:04:01 pm John Baldwin wrote: : > Author: jhb : > Date: Tue Oct 13 19:04:01 2009 : > New Revision: 198044 : > URL: http://svn.freebsd.org/changeset/base/198044 : > : > Log: : > Sync with other GENERIC kernel configs: : > - Move USB serial drivers earlier to match their placement in other kernel : > configs. : > - Add descriptions to various USB drivers. : > - Move the USB wireless drivers into a new section. : > - Add ulscom to the list of USB serial drivers. : : I do wonder if it is time to have some files like 'sys/conf/std.usb.serial' : that list all the USB serial drivers so that we only have one list of instead : of N to ease future maintenance. Similiar arguments could be made : for 'std.usb.wireless' and 'std.usb.ethernet' perhaps. I've tried this in the past... Having multiple attributes in the filename helps. but std.ethernet likely is a bad idea since that means it needs to include usb.ethernet and you can't easily exclude usb. I've often thought that it would be cool to tag each device with one or more attributes so we could easily include all devices with the attribute, and also be able to report attribute based things... Warner