From owner-svn-src-all@FreeBSD.ORG Tue Dec 28 21:18:58 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90BDD106566C; Tue, 28 Dec 2010 21:18:58 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 802128FC1D; Tue, 28 Dec 2010 21:18:58 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id oBSLIwWN077448; Tue, 28 Dec 2010 21:18:58 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oBSLIwp1077446; Tue, 28 Dec 2010 21:18:58 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201012282118.oBSLIwp1077446@svn.freebsd.org> From: Warner Losh Date: Tue, 28 Dec 2010 21:18:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r216775 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Dec 2010 21:18:58 -0000 Author: imp Date: Tue Dec 28 21:18:58 2010 New Revision: 216775 URL: http://svn.freebsd.org/changeset/base/216775 Log: Due to the automatic inclusion of DEFAULTS everywhere, and since it has device mem in it almost everywhere, we get warnings about duplicated device almost everywhere. Comment it out, with a note about why, so that we don't get those warnings. Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES ============================================================================== --- head/sys/conf/NOTES Tue Dec 28 21:12:15 2010 (r216774) +++ head/sys/conf/NOTES Tue Dec 28 21:18:58 2010 (r216775) @@ -1110,7 +1110,8 @@ options VFS_AIO device random # The system memory devices; /dev/mem, /dev/kmem -device mem +# In various system's DEFAULTS file, so we don't need it here. +#device mem # The kernel symbol table device; /dev/ksyms device ksyms