Created
January 11, 2013 03:33
-
-
Save holms/4507731 to your computer and use it in GitHub Desktop.
FreeBSD: High resolution console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /usr/src/sys/amd64/conf | |
vi GENERIC #: | |
options VESA # Build VESA module into kernel | |
options SC_PIXEL_MODE # Allows syscons to act on pixels rather than text | |
cd /usr/src | |
make buildkernel KERNCONF=GENERIC | |
make installkernel KERNCONF=GENERIC | |
reboot | |
vidcontrol -i mode # to see available modes | |
vidcontrol MODE_280 # test mode | |
vi /etc/rc.conf #: | |
allscreens_flags="MODE_280" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment