From owner-svn-src-all@FreeBSD.ORG Tue Jul 1 00:22:55 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 BF48217F; Tue, 1 Jul 2014 00:22:55 +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 926FE262C; Tue, 1 Jul 2014 00:22:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s610Mtwc016412; Tue, 1 Jul 2014 00:22:55 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s610MsIV016407; Tue, 1 Jul 2014 00:22:54 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201407010022.s610MsIV016407@svn.freebsd.org> From: Ed Maste Date: Tue, 1 Jul 2014 00:22:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r268069 - in head/sys: amd64/conf conf i386/conf ia64/conf 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: Tue, 01 Jul 2014 00:22:55 -0000 Author: emaste Date: Tue Jul 1 00:22:54 2014 New Revision: 268069 URL: http://svnweb.freebsd.org/changeset/base/268069 Log: Add vt(4) devices and options to NOTES Reviewed by: marius (earlier version) Modified: head/sys/amd64/conf/NOTES head/sys/conf/NOTES head/sys/i386/conf/NOTES head/sys/ia64/conf/NOTES Modified: head/sys/amd64/conf/NOTES ============================================================================== --- head/sys/amd64/conf/NOTES Mon Jun 30 23:39:13 2014 (r268068) +++ head/sys/amd64/conf/NOTES Tue Jul 1 00:22:54 2014 (r268069) @@ -248,6 +248,10 @@ options VGA_WIDTH90 # support 90 colum # Debugging. options VGA_DEBUG +# vt(4) drivers. +device vt_vga # VGA +device vt_efifb # EFI framebuffer + # Linear framebuffer driver for S3 VESA 1.2 cards. Works on top of VESA. device s3pci Modified: head/sys/conf/NOTES ============================================================================== --- head/sys/conf/NOTES Mon Jun 30 23:39:13 2014 (r268068) +++ head/sys/conf/NOTES Tue Jul 1 00:22:54 2014 (r268069) @@ -1452,6 +1452,20 @@ options SC_NO_SUSPEND_VTYSWITCH options TEKEN_CONS25 # cons25-style terminal emulation options TEKEN_UTF8 # UTF-8 output handling +# The vt video console driver. +device vt +options VT_ALT_TO_ESC_HACK=1 # Prepend ESC sequence to ALT keys +options VT_MAXWINDOWS=16 # Number of virtual consoles +options VT_TWOBUTTON_MOUSE # Use right mouse button to paste + +# The following options set the default framebuffer size. +options VT_FB_DEFAULT_HEIGHT=480 +options VT_FB_DEFAULT_WIDTH=640 + +# The following options will let you change the default vt terminal colors. +options TERMINAL_NORM_ATTR=(FG_GREEN|BG_BLACK) +options TERMINAL_KERN_ATTR=(FG_LIGHTRED|BG_BLACK) + # # Optional devices: # Modified: head/sys/i386/conf/NOTES ============================================================================== --- head/sys/i386/conf/NOTES Mon Jun 30 23:39:13 2014 (r268068) +++ head/sys/i386/conf/NOTES Tue Jul 1 00:22:54 2014 (r268069) @@ -466,6 +466,9 @@ options VGA_WIDTH90 # support 90 colum # Debugging. options VGA_DEBUG +# vt(4) drivers. +device vt_vga + # Linear framebuffer driver for S3 VESA 1.2 cards. Works on top of VESA. device s3pci Modified: head/sys/ia64/conf/NOTES ============================================================================== --- head/sys/ia64/conf/NOTES Mon Jun 30 23:39:13 2014 (r268068) +++ head/sys/ia64/conf/NOTES Tue Jul 1 00:22:54 2014 (r268069) @@ -97,6 +97,9 @@ options VGA_WIDTH90 # support 90 colum # Debugging. options VGA_DEBUG +# vt(4) drivers. +device vt_vga + # AGP debugging. options AGP_DEBUG