From owner-svn-src-head@freebsd.org Mon Feb 12 06:42:39 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20EF1F1D90D; Mon, 12 Feb 2018 06:42:39 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C80F482A90; Mon, 12 Feb 2018 06:42:38 +0000 (UTC) (envelope-from imp@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C30DB673D; Mon, 12 Feb 2018 06:42:38 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1C6gcAq041708; Mon, 12 Feb 2018 06:42:38 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1C6gcKe041705; Mon, 12 Feb 2018 06:42:38 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201802120642.w1C6gcKe041705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Mon, 12 Feb 2018 06:42:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329153 - in head: . etc/devd X-SVN-Group: head X-SVN-Commit-Author: imp X-SVN-Commit-Paths: in head: . etc/devd X-SVN-Commit-Revision: 329153 X-SVN-Commit-Repository: base 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.25 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: Mon, 12 Feb 2018 06:42:39 -0000 Author: imp Date: Mon Feb 12 06:42:38 2018 New Revision: 329153 URL: https://svnweb.freebsd.org/changeset/base/329153 Log: Add usb.conf to ObsoleteFiles. Add a note to UPDATING. Fix a missing tab. Relnotes: Yes Modified: head/ObsoleteFiles.inc head/UPDATING head/etc/devd/Makefile Modified: head/ObsoleteFiles.inc ============================================================================== --- head/ObsoleteFiles.inc Mon Feb 12 05:55:44 2018 (r329152) +++ head/ObsoleteFiles.inc Mon Feb 12 06:42:38 2018 (r329153) @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20180211: remove usb.conf +OLD_FILES+=etc/devd/usb.conf # 20180208: remove c_rehash(1) OLD_FILES+=usr/share/openssl/man/man1/c_rehash.1.gz # 20180206: remove gdbtui Modified: head/UPDATING ============================================================================== --- head/UPDATING Mon Feb 12 05:55:44 2018 (r329152) +++ head/UPDATING Mon Feb 12 06:42:38 2018 (r329153) @@ -51,6 +51,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12.x IS SLOW: ****************************** SPECIAL WARNING: ****************************** +20180211: + devmatch functionality has been turned on in devd. It will automatically + load drivers for unattached devices. This may cause unexpected drivers to + be loaded. Please report any problems to current@ and imp@freebsd.org. + 20180114: Clang, llvm, lld, lldb, compiler-rt and libc++ have been upgraded to 6.0.0. Please see the 20141231 entry below for information about Modified: head/etc/devd/Makefile ============================================================================== --- head/etc/devd/Makefile Mon Feb 12 05:55:44 2018 (r329152) +++ head/etc/devd/Makefile Mon Feb 12 06:42:38 2018 (r329153) @@ -12,7 +12,7 @@ FILES+= apple.conf .if ${MK_ACPI} != "no" FILES+= asus.conf .endif -FILES+=devmatch.conf +FILES+= devmatch.conf .if ${MK_HYPERV} != "no" FILES+= hyperv.conf .endif