From alsa-user-owner@alsa.jcu.cz  Mon Oct 26 20:54:35 1998
Received: from cyphyn.219.org (nwhn-sh15-port46.snet.net [204.60.50.46])
	by marvin.jcu.cz (8.9.1a/8.9.1) with ESMTP id UAA14538
	for <alsa-user@jcu.cz>; Mon, 26 Oct 1998 20:49:09 +0100
Received: from localhost (emng@localhost)
          by cyphyn.219.org (8.8.4/8.8.4) with SMTP
	  id PAA01180 for <alsa-user@jcu.cz>; Mon, 26 Oct 1998 15:52:06 -0500
Date: Mon, 26 Oct 1998 15:52:06 -0500 (EST)
From: Fred Floberg <emng@geocities.com>
To: alsa-user@jcu.cz
Subject: Re: How do i make /etc/conf.modules ?
In-Reply-To: <199810262027.PAA01096@cyphyn.219.org>
Message-ID: <Pine.LNX.3.95.981026154059.1102A-100000@cyphyn.219.org>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Reply-To: alsa-user@alsa.jcu.cz
Sender: alsa-user-owner@alsa.jcu.cz
Precedence: list



On Mon, 26 Oct 1998 secross@whidbey.com wrote:

> Is there any easy way to make the configuration file so that
> the sound modules will get loaded?
> 
> What should my /etc/conf.modules look like? (the file is empty)
> Is there some trick to do this? 
> 
/etc/conf.modules is actually the output of the command 'modprobe -c'.

Run these commands to make a conf.modules file:

# modprobe -c > conf.modules.tmp

Edit conf.modules.tmp and add these lines:

alias char-major-14 snd
alias snd-minor-oss-0 snd-mixer
alias snd-minor-oss-3 snd-pcm1-oss
alias snd-minor-oss-4 snd-pcm1-oss
alias snd-minor-oss-5 snd-pcm1-oss
alias snd-card-0 snd-audiopci

options snd snd_major=14 snd_cards_limit=1

options snd-audiopci snd_index=1 snd_dac1_frame_size=128 
snd_dac2_frame_size=128 snd_adc_frame_size=128

(Make sure that last line, starting with "options" is a single line.)

# cp conf.modules.tmp /etc/conf.modules


That should do you.


Fred



