From owner-svn-src-all@FreeBSD.ORG Fri Feb 6 03:50:08 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04C586FB; Fri, 6 Feb 2015 03:50:08 +0000 (UTC) Received: from mail-qc0-x232.google.com (mail-qc0-x232.google.com [IPv6:2607:f8b0:400d:c01::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BE949C31; Fri, 6 Feb 2015 03:50:07 +0000 (UTC) Received: by mail-qc0-f178.google.com with SMTP id b13so9992020qcw.9; Thu, 05 Feb 2015 19:50:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=cJyo3ORdG57h2q6bqCWK76JH8OqSaas3JcWejzBl29E=; b=xm6r+0X6ysgZl05CTBgIBKxEepAX3xak7MlYW73L0z5TyXGIFtKUn9AIyUDkqJcady QwLhuqjOxPqjY1wYgj9BHV9UDA1wWVKY0sEOeMSER84AA9QOYacA7KcmvrK5T5WHa8+r qg230smRy4SznQrHChYkmtWrBoatcoBzg2TPQ+J7oeuJcDqnEtqEoqm2IOfJyNenbrrI fxoZnJMVQ5mAuJqehPjbndM3CKLne+xR3lF+sPv7z5mAgphhe0J1PEB8yklAuj8ulbPQ nyiAao7ZBQCI5vC239CpoLVRxr5oh8AzheDWlIpK/BdS/0Vcdzm+SclK/BfTbGc6DZco 3ZrQ== X-Received: by 10.140.81.208 with SMTP id f74mr3756935qgd.94.1423194606783; Thu, 05 Feb 2015 19:50:06 -0800 (PST) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.140.39.209 with HTTP; Thu, 5 Feb 2015 19:49:45 -0800 (PST) In-Reply-To: References: <201502051138.t15BcUlj070663@svn.freebsd.org> <1724492.FMbRRniWv7@ralph.baldwin.cx> <22331387.X8ihv2sqVO@ralph.baldwin.cx> From: Ed Maste Date: Thu, 5 Feb 2015 22:49:45 -0500 X-Google-Sender-Auth: JDMtRAWBlT1rKHk8dYWGgPUGMe4 Message-ID: Subject: Re: svn commit: r278249 - head/etc/rc.d To: NGie Cooper Content-Type: text/plain; charset=UTF-8 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , Garrett Cooper , John Baldwin X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 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, 06 Feb 2015 03:50:08 -0000 On 5 February 2015 at 18:32, NGie Cooper wrote: > > I guess I was just propagating around the original assumption that > using moused is tied to just syscons(4). You and emaste are right > though -- these tools should build and install when MK_LEGACY_CONSOLE > != no || MK_VT != no (or invent a different build knob to make the > intent of the tools clearer instead of copy-pasting that pattern > around the tree). We already have a knob to control these tools -- LEGACY_CONSOLE. The three related console knobs are: LEGACY_CONSOLE - kbdcontrol, moused, etc. which support both syscons(4) and vt(4) SYSCONS - key maps, fonts, etc. for syscons(4) VT - key maps, fonts, etc. for vt(4) LEGACY_CONSOLE may be poorly named, but just adding || MK_VT != no isn't correct. Eliminating it, and using MK_SYSCONS != no || MK_VT != no might be.