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

Ed Maste emaste at FreeBSD.org
Mon Jun 30 16:18:39 UTC 2014


Author: emaste
Date: Mon Jun 30 16:18:38 2014
New Revision: 268045
URL: http://svnweb.freebsd.org/changeset/base/268045

Log:
  Add vt(4) to GENERIC and retire the separate VT config
  
  vt(4) and sc(4) can now coexist in the same kernel.  To choose the vt
  driver, set the loader tunable kern.vty=vt .

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

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Mon Jun 30 16:16:35 2014	(r268044)
+++ head/sys/amd64/conf/GENERIC	Mon Jun 30 16:18:38 2014	(r268045)
@@ -184,6 +184,11 @@ device		splash			# Splash screen and scr
 device		sc
 options 	SC_PIXEL_MODE		# add support for the raster text mode
 
+# vt is the new video console driver
+device		vt
+device		vt_vga
+device		vt_efifb
+
 device		agp			# support several AGP chipsets
 
 # PCCARD (PCMCIA) support

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Mon Jun 30 16:16:35 2014	(r268044)
+++ head/sys/i386/conf/GENERIC	Mon Jun 30 16:18:38 2014	(r268045)
@@ -187,6 +187,10 @@ device		splash			# Splash screen and scr
 device		sc
 options 	SC_PIXEL_MODE		# add support for the raster text mode
 
+# vt is the new video console driver
+device		vt
+device		vt_vga
+
 device		agp			# support several AGP chipsets
 
 # Power management support (see NOTES for more options)


More information about the svn-src-all mailing list