Subject: Re: ESS Maestro Audio Accelerator
To: Al Urbaitis <aurbaiti@servecom.picker.com>
From: Jaromír <jdolecek@netbsd.org>
List: port-i386
Date: 05/02/2001 17:15:18
--ELM988816518-14081-0_
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset=US-ASCII

Al Urbaitis wrote:
> and so I hoped the "Maestro 3 " would work like the "Maestro 2/2E" further I assumed that  "esm" would be the correct
> gizmo to build into the kernel but I couldn't find it in the configuration file.
> 
> I guess what I need is a little tutorial  " kernel building for idiots "

You might try appended patch, which makes esm driver attach to Maestro 3
card. It might work if M3 is compatible enough with Maestro 2.

Jaromir
-- 
Jaromir Dolecek <jdolecek@NetBSD.org>      http://www.ics.muni.cz/~dolecek/
NetBSD - just plain best OS! -=*=- Got spare MCA cards or docs? Hand me them!

--ELM988816518-14081-0_
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset=ISO-8859-2
Content-Disposition: attachment; filename=esm.diff

Index: esm.c
===================================================================
RCS file: /cvsroot/syssrc/sys/dev/pci/esm.c,v
retrieving revision 1.10
diff -u -p -r1.10 esm.c
--- esm.c	2001/04/25 03:06:11	1.10
+++ esm.c	2001/05/02 15:11:32
@@ -1282,6 +1282,7 @@ esm_match(struct device *dev, struct cfd
 		case PCI_PRODUCT_ESSTECH_MAESTRO1:
 		case PCI_PRODUCT_ESSTECH_MAESTRO2:
 		case PCI_PRODUCT_ESSTECH_MAESTRO2E:
+		case PCI_PRODUCT_ESSTECH_MAESTRO3:
 			return 1;
 		}
 

--ELM988816518-14081-0_--