Date: Wed, 31 Jul 2002 08:44:02 -0700 From: Orion Hodson <orion@freebsd.org> To: Jacob Rhoden <jrhoden@unimelb.edu.au> Cc: freebsd-questions@freebsd.org Subject: Re: sound card on intel motherboard - details Message-ID: <200207311544.g6VFi2b97605@puma.icir.org> In-Reply-To: Your message of "Tue, 30 Jul 2002 11:17:51 %2B1000." <5.1.1.6.0.20020730111255.00b6b838@wheresmymailserver.com>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --] Jacob The board is an ich4 motherboard. After a quick read of the specs it looks sufficiently similar to the other variants that just adding the PCI ID to ich audio probe routine *may* be all it takes to get basic pcm audio working. A patch is appended below for /usr/src/sys/dev/sound/pci/ich.c (or wherever your local copy of this file is). Alternatively, I can compile a loadable kernel module if you are happy to test that. Cheers - Orion [-- Attachment #2 --] Index: ich.c =================================================================== RCS file: /home/ncvs/src/sys/dev/sound/pci/ich.c,v retrieving revision 1.3.2.10 diff -u -r1.3.2.10 ich.c --- ich.c 2 Jul 2002 15:38:36 -0000 1.3.2.10 +++ ich.c 31 Jul 2002 15:37:32 -0000 @@ -610,6 +610,10 @@ device_set_desc(dev, "Intel 82801CA (ICH3)"); return 0; + case 0x248524c5: + device_set_desc(dev, "Intel 82801DB (ICH4)"); + return 0; + case SIS7012ID: device_set_desc(dev, "SiS 7012"); return 0;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200207311544.g6VFi2b97605>
