From owner-svn-src-all@freebsd.org Fri Jan 11 16:13:59 2019 Return-Path: Delivered-To: svn-src-all@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 9DDBA1494C54; Fri, 11 Jan 2019 16:13:59 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 324CF726D8; Fri, 11 Jan 2019 16:13:59 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-lf1-f43.google.com (mail-lf1-f43.google.com [209.85.167.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id CE2BC1E2F1; Fri, 11 Jan 2019 16:13:58 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-lf1-f43.google.com with SMTP id z13so11166301lfe.11; Fri, 11 Jan 2019 08:13:58 -0800 (PST) X-Gm-Message-State: AJcUukfLQ2DvUu7U0LWG5CciDenAJiTG/RApRAXn1efW7LBtpVvm/bjJ FI1fFOcWlbKQyE01j611KpUMMWbFatnj+LuKYjo= X-Google-Smtp-Source: ALg8bN5ZOBBK9rytcGaVUj6d8iVvPH5XEYH8voFfwjJ0skn6sA7M7FN0pT9yfoLuwuR5WyE/tnWTcCBBixWK3547ze4= X-Received: by 2002:a19:d619:: with SMTP id n25mr8014680lfg.91.1547223237197; Fri, 11 Jan 2019 08:13:57 -0800 (PST) MIME-Version: 1.0 References: <201901111552.x0BFqAxa049564@repo.freebsd.org> <201901111604.x0BG4XoU021904@pdx.rh.CN85.dnsmgr.net> In-Reply-To: <201901111604.x0BG4XoU021904@pdx.rh.CN85.dnsmgr.net> From: Kyle Evans Date: Fri, 11 Jan 2019 10:13:03 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r342945 - in head: tools/build/mk usr.sbin/bluetooth usr.sbin/bluetooth/bluetooth-config To: "Rodney W. Grimes" Cc: Lars Engels , src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 324CF726D8 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.94 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.94)[-0.937,0] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 11 Jan 2019 16:13:59 -0000 On Fri, Jan 11, 2019 at 10:04 AM Rodney W. Grimes wrote: > > > Author: lme (ports committer) > > Date: Fri Jan 11 15:52:09 2019 > > New Revision: 342945 > > URL: https://svnweb.freebsd.org/changeset/base/342945 > > > > Log: > > Add `bluetooth-config` script to simplify setting up bluetooth connections to > > devices like mice, keyboards, bt-audio, ... > > > > This script currently allows scanning for nearby devices, adds one to > > /etc/bluetooth/hosts, adds an entry to hcsecd's conf and if it is a HID, add an > > entry to bthidd's configs, as well. > > > > Submitted by: erdgeist > > Approved by: bapt > > MFC after: 2 weeks > > Differential Revision: D3778 > > Reviewers: bapt, emax > > > > Added: > > head/usr.sbin/bluetooth/bluetooth-config/ > > head/usr.sbin/bluetooth/bluetooth-config/Makefile (contents, props changed) > > head/usr.sbin/bluetooth/bluetooth-config/bluetooth-config.8 (contents, props changed) > > head/usr.sbin/bluetooth/bluetooth-config/bluetooth-config.sh (contents, props changed) > > Modified: > > head/tools/build/mk/OptionalObsoleteFiles.inc > > head/usr.sbin/bluetooth/Makefile > > > > Modified: head/tools/build/mk/OptionalObsoleteFiles.inc > > ============================================================================== > > --- head/tools/build/mk/OptionalObsoleteFiles.inc Fri Jan 11 14:21:59 2019 (r342944) > > +++ head/tools/build/mk/OptionalObsoleteFiles.inc Fri Jan 11 15:52:09 2019 (r342945) > > @@ -504,6 +504,7 @@ OLD_FILES+=usr/lib32/libsdp_p.a > > .endif > > OLD_FILES+=usr/sbin/ath3kfw > > OLD_FILES+=usr/sbin/bcmfw > > +OLD_FILES+=usr/sbin/bluetooth-config > > I am confused, or miss understand something. > This commit adds these files, but declares them as Obsolete? > This is correct; it is obsolete when Bluetooth is disabled.