Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Apr 2014 02:20:51 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r264999 - head/sys/dev/vt
Message-ID:  <201404270220.s3R2KpNF079363@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nwhitehorn
Date: Sun Apr 27 02:20:51 2014
New Revision: 264999
URL: http://svnweb.freebsd.org/changeset/base/264999

Log:
  Increase the maximum framebuffer size to more reasonable values reflecting
  the high-resolution boot consoles present on Open Firmware and EFI systems.

Modified:
  head/sys/dev/vt/vt.h

Modified: head/sys/dev/vt/vt.h
==============================================================================
--- head/sys/dev/vt/vt.h	Sun Apr 27 02:20:09 2014	(r264998)
+++ head/sys/dev/vt/vt.h	Sun Apr 27 02:20:51 2014	(r264999)
@@ -337,10 +337,10 @@ void vt_upgrade(struct vt_device *vd);
 #define	PIXEL_HEIGHT(h)	((h) / 16)
 
 #ifndef VT_FB_DEFAULT_WIDTH
-#define	VT_FB_DEFAULT_WIDTH	640
+#define	VT_FB_DEFAULT_WIDTH	2048
 #endif
 #ifndef VT_FB_DEFAULT_HEIGHT
-#define	VT_FB_DEFAULT_HEIGHT	480
+#define	VT_FB_DEFAULT_HEIGHT	1200
 #endif
 
 #define	VT_CONSDEV_DECLARE(driver, width, height, softc)		\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404270220.s3R2KpNF079363>