*BSD News Article 37675


Return to BSD News archive

Path: sserve!newshost.anu.edu.au!harbinger.cc.monash.edu.au!msuinfo!uwm.edu!math.ohio-state.edu!cs.utexas.edu!convex!news.duke.edu!godot.cc.duq.edu!hudson.lm.com!news.galt.com!alex
From: alex@phred.org (alex wetmore)
Newsgroups: comp.os.386bsd.questions
Subject: Re: Original SB card and FreeBSD
Date: 8 Nov 1994 22:45:46 GMT
Organization: Phred Networking
Lines: 40
Message-ID: <39ov2q$hra@dagny.galt.com>
References: <CyyIus.GBp@cdsmail.cdc.com>
NNTP-Posting-Host: phred.ws.cc.cmu.edu
X-Newsreader: TIN [version 1.2 PL2]

> device snd2 at isa? port 0x220 irq 10 drq 1 vector sbintr
> device snd1 at isa? port 0x388

> and the following excludes:

> options         "EXCLUDE_MPU401"        # NO MPU401 support
> options         EXCLUDE_GUS             # NO GUS support
> options         EXCLUDE_GUS_IODETECT    # NO GUS io detection
> options         EXCLUDE_SB_EMULATION    # NO PAS SB emulation support
> options         EXCLUDE_SBPRO           # NO SB Pro support
> options         "EXCLUDE_SB16"          # NO SB 16 support
> options         "EXCLUDE_YM3812"        # NO AdLib support
> options         "EXCLUDE_OPL3"          # NO OPL3 chip support
> options         EXCLUDE_PAS             # NO Pro Audio Studio support
> options         EXCLUDE_PRO_MIDI        # NO PAS MIDI support

>  The system recognizes snd2 OK on boot up, but can't find snd1. The SB manual says 
> 0x388 is the correct address for FM.  Any ideas ? Thanks.

You disabled the snd1 by having EXCLUDE_YM3812 in there, since that is the 
chip that the snd1 device talks to.

Here are the appropriate parts of my config file:

options         "EXCLUDE_MPU401"        # NO MPU401 support
options         EXCLUDE_GUS             # NO GUS support
options         EXCLUDE_GUS_IODETECT    # NO GUS io detection
options         EXCLUDE_SB_EMULATION    # NO PAS SB emulation support
options         EXCLUDE_SBPRO           # NO SB Pro support
options         "EXCLUDE_SB16"          # NO SB 16 support
options         EXCLUDE_PAS             # NO Pro Audio Studio support
options         EXCLUDE_PRO_MIDI        # NO PAS MIDI support

# sound blaster
device snd2 at isa? port 0x220 irq 5 drq 1 vector sbintr
device snd1 at isa? port 0x388

This works well for me and one of my friends...

alex