svn commit: r260875 - head/sys/ia64/conf

Marcel Moolenaar marcel at FreeBSD.org
Sun Jan 19 04:45:53 UTC 2014


Author: marcel
Date: Sun Jan 19 04:45:52 2014
New Revision: 260875
URL: http://svnweb.freebsd.org/changeset/base/260875

Log:
  Enable vt. This brings VGA-based console and terminal support to
  ia64 for the very first time. Only 9 years in the making...
  
  Note that the vt/vga driver does not actually make sure there's
  VGA hardware at the standard/legacy VGA I/O port and memory I/O
  addresses. This can cause machine checks if the H/W does not have
  a VGA controller.

Modified:
  head/sys/ia64/conf/GENERIC

Modified: head/sys/ia64/conf/GENERIC
==============================================================================
--- head/sys/ia64/conf/GENERIC	Sun Jan 19 00:38:18 2014	(r260874)
+++ head/sys/ia64/conf/GENERIC	Sun Jan 19 04:45:52 2014	(r260875)
@@ -192,7 +192,9 @@ options		AH_SUPPORT_AR5416
 # Various (pseudo) devices
 device		ether		# Ethernet support
 device		faith		# IPv6-to-IPv4 relaying (translation)
+device		firmware	# firmware assist module
 device		gif		# IPv6 and IPv4 tunneling
+device		kbdmux		# keyboard multiplexer
 device		loop		# Network loopback
 device		md		# Memory "disks"
 device		puc		# Multi I/O cards and multi-channel UARTs
@@ -200,7 +202,8 @@ device		random		# Entropy device
 device		tun		# Packet tunnel.
 device		uart		# Serial port (UART)
 device		vlan		# 802.1Q VLAN support
-device		firmware	# firmware assist module
+device		vt		# Virtual terminals
+device		vt_vga		# VGA terminal device
 
 # The `bpf' device enables the Berkeley Packet Filter.
 # Be aware of the administrative consequences of enabling this!


More information about the svn-src-head mailing list