From owner-svn-src-stable@FreeBSD.ORG Tue Jul 8 14:04:37 2014 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A2C5438; Tue, 8 Jul 2014 14:04:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CC812696; Tue, 8 Jul 2014 14:04:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s68E4bTi093338; Tue, 8 Jul 2014 14:04:37 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s68E4aMq093332; Tue, 8 Jul 2014 14:04:36 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201407081404.s68E4aMq093332@svn.freebsd.org> From: Ed Maste Date: Tue, 8 Jul 2014 14:04:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r268399 - in stable/10: . share share/mk tools/build/options X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2014 14:04:37 -0000 Author: emaste Date: Tue Jul 8 14:04:36 2014 New Revision: 268399 URL: http://svnweb.freebsd.org/changeset/base/268399 Log: MFC r268022: Rename the WITHOUT_VT_SUPPORT knob to WITHOUT_VT The _SUPPORT knobs have a consistent meaning which differs from the behaviour controlled by this knob. As the knob is opt-out and has not appeared in a release the impact should be low. Added: stable/10/tools/build/options/WITHOUT_VT - copied unchanged from r268022, head/tools/build/options/WITHOUT_VT Deleted: stable/10/tools/build/options/WITHOUT_VT_SUPPORT Modified: stable/10/UPDATING stable/10/share/Makefile stable/10/share/mk/bsd.own.mk Directory Properties: stable/10/ (props changed) Modified: stable/10/UPDATING ============================================================================== --- stable/10/UPDATING Tue Jul 8 13:28:37 2014 (r268398) +++ stable/10/UPDATING Tue Jul 8 14:04:36 2014 (r268399) @@ -16,6 +16,11 @@ from older versions of FreeBSD, try WITH stable/10, and then rebuild without this option. The bootstrap process from older version of current is a bit fragile. +20140708: + The WITHOUT_VT_SUPPORT kernel config knob has been renamed + WITHOUT_VT. (The other _SUPPORT knobs have a consistent meaning + which differs from the behaviour controlled by this knob.) + 20140608: On i386 and amd64 systems, the onifconsole flag is now set by default in /etc/ttys for ttyu0. This causes ttyu0 to be automatically enabled Modified: stable/10/share/Makefile ============================================================================== --- stable/10/share/Makefile Tue Jul 8 13:28:37 2014 (r268398) +++ stable/10/share/Makefile Tue Jul 8 14:04:36 2014 (r268399) @@ -86,7 +86,7 @@ _syscons= syscons _tests= tests .endif -.if ${MK_VT_SUPPORT} != "no" +.if ${MK_VT} != "no" _vt= vt .endif Modified: stable/10/share/mk/bsd.own.mk ============================================================================== --- stable/10/share/mk/bsd.own.mk Tue Jul 8 13:28:37 2014 (r268398) +++ stable/10/share/mk/bsd.own.mk Tue Jul 8 14:04:36 2014 (r268399) @@ -358,7 +358,7 @@ __DEFAULT_YES_OPTIONS = \ UNBOUND \ USB \ UTMPX \ - VT_SUPPORT \ + VT \ WIRELESS \ WPA_SUPPLICANT_EAPOL \ ZFS \ Copied: stable/10/tools/build/options/WITHOUT_VT (from r268022, head/tools/build/options/WITHOUT_VT) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ stable/10/tools/build/options/WITHOUT_VT Tue Jul 8 14:04:36 2014 (r268399, copy of r268022, head/tools/build/options/WITHOUT_VT) @@ -0,0 +1,4 @@ +.\" $FreeBSD$ +Set to not build +.Xr vt 4 +support files (fonts and keymaps).