From owner-svn-src-all@FreeBSD.ORG Sun Mar 2 01:46:45 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 34749675; Sun, 2 Mar 2014 01:46:45 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1FCEF1927; Sun, 2 Mar 2014 01:46:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s221kid3080046; Sun, 2 Mar 2014 01:46:44 GMT (envelope-from jmmv@svn.freebsd.org) Received: (from jmmv@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s221kimV080045; Sun, 2 Mar 2014 01:46:44 GMT (envelope-from jmmv@svn.freebsd.org) Message-Id: <201403020146.s221kimV080045@svn.freebsd.org> From: Julio Merino Date: Sun, 2 Mar 2014 01:46:44 +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: r262674 - stable/10/sys/dev/syscons X-SVN-Group: stable-10 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.17 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: Sun, 02 Mar 2014 01:46:45 -0000 Author: jmmv Date: Sun Mar 2 01:46:44 2014 New Revision: 262674 URL: http://svnweb.freebsd.org/changeset/base/262674 Log: Increase maximum number of columns to support 1920x1200 displays. This is a MFC of r262480 and r262502. Please note that this is changing a constant in a header file so it could affect ABIs. However, as far as I can tell, this is apparently only used in code to declare static arrays and thus it should be safe to change... PR: kern/180558 Modified: stable/10/sys/dev/syscons/syscons.h Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/dev/syscons/syscons.h ============================================================================== --- stable/10/sys/dev/syscons/syscons.h Sun Mar 2 00:47:47 2014 (r262673) +++ stable/10/sys/dev/syscons/syscons.h Sun Mar 2 01:46:44 2014 (r262674) @@ -145,9 +145,9 @@ /* The following #defines are hard-coded for a maximum text resolution corresponding to a maximum framebuffer - resolution of 1600x1200 with an 8x8 font... + resolution of 1920x1200 with an 8x8 font... */ -#define COL 200 +#define COL 240 #define ROW 150 #define PCBURST 128