svn commit: r221743 - in head/sys: amd64/conf i386/conf

Jung-uk Kim jkim at FreeBSD.org
Tue May 10 16:44:17 UTC 2011


Author: jkim
Date: Tue May 10 16:44:16 2011
New Revision: 221743
URL: http://svn.freebsd.org/changeset/base/221743

Log:
  Add SC_PIXEL_MODE to GENERIC for amd64 and i386.
  
  Requested by:	many

Modified:
  head/sys/amd64/conf/GENERIC
  head/sys/i386/conf/GENERIC

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Tue May 10 15:54:37 2011	(r221742)
+++ head/sys/amd64/conf/GENERIC	Tue May 10 16:44:16 2011	(r221743)
@@ -165,6 +165,7 @@ device		splash		# Splash screen and scre
 
 # syscons is the default console driver, resembling an SCO console
 device		sc
+options 	SC_PIXEL_MODE	# add support for the raster text mode
 
 device		agp		# support several AGP chipsets
 

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Tue May 10 15:54:37 2011	(r221742)
+++ head/sys/i386/conf/GENERIC	Tue May 10 16:44:16 2011	(r221743)
@@ -170,6 +170,7 @@ device		splash		# Splash screen and scre
 
 # syscons is the default console driver, resembling an SCO console
 device		sc
+options 	SC_PIXEL_MODE	# add support for the raster text mode
 
 device		agp		# support several AGP chipsets
 


More information about the svn-src-all mailing list