From owner-svn-src-all@FreeBSD.ORG Mon Jun 30 00:20:14 2014 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D6C93D2; Mon, 30 Jun 2014 00:20:14 +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 EE4EE274D; Mon, 30 Jun 2014 00:20:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5U0KDfG026217; Mon, 30 Jun 2014 00:20:13 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5U0KCps026211; Mon, 30 Jun 2014 00:20:12 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201406300020.s5U0KCps026211@svn.freebsd.org> From: Ed Maste Date: Mon, 30 Jun 2014 00:20:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r268022 - in head: . share share/mk tools/build/options usr.bin X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 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: Mon, 30 Jun 2014 00:20:14 -0000 Author: emaste Date: Mon Jun 30 00:20:12 2014 New Revision: 268022 URL: http://svnweb.freebsd.org/changeset/base/268022 Log: 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. Suggested by: imp, wblock MFC after: 1 week Added: head/tools/build/options/WITHOUT_VT - copied unchanged from r268021, head/tools/build/options/WITHOUT_VT_SUPPORT Deleted: head/tools/build/options/WITHOUT_VT_SUPPORT Modified: head/Makefile.inc1 head/UPDATING head/share/Makefile head/share/mk/src.opts.mk head/usr.bin/Makefile Modified: head/Makefile.inc1 ============================================================================== --- head/Makefile.inc1 Sun Jun 29 22:35:47 2014 (r268021) +++ head/Makefile.inc1 Mon Jun 30 00:20:12 2014 (r268022) @@ -1198,7 +1198,7 @@ _gperf= gnu/usr.bin/gperf _groff= gnu/usr.bin/groff .endif -.if ${MK_VT_SUPPORT} != "no" +.if ${MK_VT} != "no" _vtfontcvt= usr.bin/vtfontcvt .endif Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun Jun 29 22:35:47 2014 (r268021) +++ head/UPDATING Mon Jun 30 00:20:12 2014 (r268022) @@ -31,6 +31,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20140629: + 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.) + 20140619: Maximal length of the serial number in CTL was increased from 16 to 64 chars, that breaks ABI. All CTL-related tools, such as ctladm Modified: head/share/Makefile ============================================================================== --- head/share/Makefile Sun Jun 29 22:35:47 2014 (r268021) +++ head/share/Makefile Mon Jun 30 00:20:12 2014 (r268022) @@ -86,7 +86,7 @@ _syscons= syscons _tests= tests .endif -.if ${MK_VT_SUPPORT} != "no" +.if ${MK_VT} != "no" _vt= vt .endif Modified: head/share/mk/src.opts.mk ============================================================================== --- head/share/mk/src.opts.mk Sun Jun 29 22:35:47 2014 (r268021) +++ head/share/mk/src.opts.mk Mon Jun 30 00:20:12 2014 (r268022) @@ -149,7 +149,7 @@ __DEFAULT_YES_OPTIONS = \ USB \ UTMPX \ VI \ - VT_SUPPORT \ + VT \ WIRELESS \ WPA_SUPPLICANT_EAPOL \ ZFS \ Copied: head/tools/build/options/WITHOUT_VT (from r268021, head/tools/build/options/WITHOUT_VT_SUPPORT) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/tools/build/options/WITHOUT_VT Mon Jun 30 00:20:12 2014 (r268022, copy of r268021, head/tools/build/options/WITHOUT_VT_SUPPORT) @@ -0,0 +1,4 @@ +.\" $FreeBSD$ +Set to not build +.Xr vt 4 +support files (fonts and keymaps). Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Sun Jun 29 22:35:47 2014 (r268021) +++ head/usr.bin/Makefile Mon Jun 30 00:20:12 2014 (r268022) @@ -359,7 +359,7 @@ SUBDIR+= yacc SUBDIR+= vi .endif -.if ${MK_VT_SUPPORT} != "no" +.if ${MK_VT} != "no" SUBDIR+= vtfontcvt .endif