svn commit: r264999 - head/sys/dev/vt

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun Apr 27 02:20:52 UTC 2014


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)		\


More information about the svn-src-all mailing list