From e07f386df27ef0200ac1a608b090baea63b720be Mon Sep 17 00:00:00 2001 From: jmmv Date: Tue, 25 Feb 2014 13:48:05 +0000 Subject: 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 --- sys/dev/syscons/syscons.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h index 353b67f..da53efd 100644 --- a/sys/dev/syscons/syscons.h +++ b/sys/dev/syscons/syscons.h @@ -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 -- cgit v1.1