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

Joel Dahl joel at FreeBSD.org
Sat Jun 11 09:08:47 UTC 2011


Author: joel (doc committer)
Date: Sat Jun 11 09:08:46 2011
New Revision: 222980
URL: http://svn.freebsd.org/changeset/base/222980

Log:
  Enable sound support by default on i386 and amd64.
  
  The generic sound driver has been added, along with enough
  device-specific drivers to support the most common audio
  chipsets.
  
  We've discussed enabling it from time to time over the years
  and we've received numerous requests from users, so we decided
  that shipping 9.0 with working audio by default would be the
  best thing to do.
  
  Bug reports should be sent to the multimedia@ mailing list, as
  usual.
  
  Approved by:    mav
  No objection:   re

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

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Sat Jun 11 08:03:44 2011	(r222979)
+++ head/sys/amd64/conf/GENERIC	Sat Jun 11 09:08:46 2011	(r222980)
@@ -337,3 +337,11 @@ device		fwe		# Ethernet over FireWire (n
 device		fwip		# IP over FireWire (RFC 2734,3146)
 device		dcons		# Dumb console driver
 device		dcons_crom	# Configuration ROM for dcons
+
+# Sound support
+device		sound		# Generic sound driver (required)
+device		snd_es137x	# Ensoniq AudioPCI ES137x
+device		snd_hda		# Intel High Definition Audio
+device		snd_ich		# Intel, NVidia and other ICH AC'97 Audio
+device		snd_uaudio	# USB Audio
+device		snd_via8233	# VIA VT8233x Audio

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Sat Jun 11 08:03:44 2011	(r222979)
+++ head/sys/i386/conf/GENERIC	Sat Jun 11 09:08:46 2011	(r222980)
@@ -350,3 +350,11 @@ device		fwe		# Ethernet over FireWire (n
 device		fwip		# IP over FireWire (RFC 2734,3146)
 device		dcons		# Dumb console driver
 device		dcons_crom	# Configuration ROM for dcons
+
+# Sound support
+device		sound		# Generic sound driver (required)
+device		snd_es137x	# Ensoniq AudioPCI ES137x
+device		snd_hda		# Intel High Definition Audio
+device		snd_ich		# Intel, NVidia and other ICH AC'97 Audio
+device		snd_uaudio	# USB Audio
+device		snd_via8233	# VIA VT8233x Audio


More information about the svn-src-all mailing list