summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2014-04-27 02:20:51 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2014-04-27 02:20:51 +0000
commita1630fad26750df586174ac536278eafe5852a48 (patch)
treeb9365ac4c203f8e109465a7caf3504aec74057c4
parentf51d6fcb64af0d0363f37794ae952ce42787f86d (diff)
downloadFreeBSD-src-a1630fad26750df586174ac536278eafe5852a48.zip
FreeBSD-src-a1630fad26750df586174ac536278eafe5852a48.tar.gz
Increase the maximum framebuffer size to more reasonable values reflecting
the high-resolution boot consoles present on Open Firmware and EFI systems.
-rw-r--r--sys/dev/vt/vt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vt/vt.h b/sys/dev/vt/vt.h
index 9445cc9..caab709 100644
--- a/sys/dev/vt/vt.h
+++ b/sys/dev/vt/vt.h
@@ -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) \
OpenPOWER on IntegriCloud