From owner-svn-src-all@FreeBSD.ORG Tue Feb 25 14:30:10 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 9BEF7C56; Tue, 25 Feb 2014 14:30:10 +0000 (UTC) Received: from mail-vc0-x22a.google.com (mail-vc0-x22a.google.com [IPv6:2607:f8b0:400c:c03::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1ECF01F8C; Tue, 25 Feb 2014 14:30:10 +0000 (UTC) Received: by mail-vc0-f170.google.com with SMTP id hu8so7353369vcb.15 for ; Tue, 25 Feb 2014 06:30:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=vI0+eI1L1eiL0xYhMP8EfNXxs0KGvz/RKXCixl1Q2QQ=; b=eASGqi+S2uSjUFP2GGMRj4n5xUf2iSKWyOuYJpnb1XK5BOpnxwp0YPaM+au9eeBXNG GGeEKYgqnC5iNZChilXBI0PbRrQdHI7K0acfpeNW5oeuMJZwsCp9QHENgx/M4IkRXxN6 NJ92ENS91q4pPRyfMM1GfdsWSZgnvDtCb55K598mYHSjLua9gb0K7Ri16mDRQ6FE/kFC xk6Vyu4xE8lfuk88xfb6ydjGDk0hWMcHadko9p2zg8yyBP6Bg7PWhflm9X4HpagZNUBC hz3Lwsb7ExqaDYfbDZPMzMv7i6bR34sHMcb1+jZ2WuIjpQBWWbCEE3DQzJ2syMGXP7n4 7TlQ== MIME-Version: 1.0 X-Received: by 10.52.109.3 with SMTP id ho3mr15859vdb.76.1393338609182; Tue, 25 Feb 2014 06:30:09 -0800 (PST) Received: by 10.220.168.135 with HTTP; Tue, 25 Feb 2014 06:30:09 -0800 (PST) In-Reply-To: <201402251348.s1PDm5Zp030180@svn.freebsd.org> References: <201402251348.s1PDm5Zp030180@svn.freebsd.org> Date: Tue, 25 Feb 2014 09:30:09 -0500 Message-ID: Subject: Re: svn commit: r262480 - head/sys/dev/syscons From: Thomas Hoffmann To: svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: Julio Merino 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: Tue, 25 Feb 2014 14:30:10 -0000 On Tue, Feb 25, 2014 at 8:48 AM, Julio Merino wrote: > Author: jmmv > Date: Tue Feb 25 13:48:05 2014 > New Revision: 262480 > URL: http://svnweb.freebsd.org/changeset/base/262480 > > Log: > Increase maximum number of columns to support 1980x1200 displays. > > In my specific case, this fixes the problem of my PowerMac G5 displaying > a > 4:3 console on a 16:10 display with black bars on the left and right. > > PR: kern/180558 > Reviewed by: nwhitehorn > MFC after: 5 days > > Modified: > head/sys/dev/syscons/syscons.h > > Modified: head/sys/dev/syscons/syscons.h > > ============================================================================== > --- head/sys/dev/syscons/syscons.h Tue Feb 25 12:13:11 2014 > (r262479) > +++ head/sys/dev/syscons/syscons.h Tue Feb 25 13:48:05 2014 > (r262480) > @@ -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 1980x1200 with an 8x8 font... > */ > -#define COL 200 > +#define COL 240 > #define ROW 150 > > #define PCBURST 128 > _______________________________________________ > svn-src-head@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to "svn-src-head-unsubscribe@freebsd.org" > The math works out OK for COL 240, but the comment has it wrong. Should be 1920x1200.