Gentoo Archives: gentoo-doc-cvs

From: "Joshua Saddler (nightmorph)" <nightmorph@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: alsa-guide.xml
Date: Wed, 05 Aug 2009 15:43:14
Message-Id: E1MYie0-0005wJ-4x@stork.gentoo.org
1 nightmorph 09/08/05 15:43:12
2
3 Modified: alsa-guide.xml
4 Log:
5 Update alsa guide for the modprobe.d switch. thanks to ssuominen for the patch. bug 280468
6
7 Revision Changes Path
8 1.83 xml/htdocs/doc/en/alsa-guide.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/alsa-guide.xml?rev=1.83&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/alsa-guide.xml?rev=1.83&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/alsa-guide.xml?r1=1.82&r2=1.83
13
14 Index: alsa-guide.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/alsa-guide.xml,v
17 retrieving revision 1.82
18 retrieving revision 1.83
19 diff -u -r1.82 -r1.83
20 --- alsa-guide.xml 26 Jan 2009 09:13:56 -0000 1.82
21 +++ alsa-guide.xml 5 Aug 2009 15:43:12 -0000 1.83
22 @@ -1,5 +1,5 @@
23 <?xml version='1.0' encoding="UTF-8"?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/alsa-guide.xml,v 1.82 2009/01/26 09:13:56 nightmorph Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/alsa-guide.xml,v 1.83 2009/08/05 15:43:12 nightmorph Exp $ -->
26
27 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
28
29 @@ -24,8 +24,8 @@
30 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
31 <license/>
32
33 -<version>2.24</version>
34 -<date>2009-01-26</date>
35 +<version>2.25</version>
36 +<date>2009-08-05</date>
37
38 <chapter>
39 <title>Introduction</title>
40 @@ -295,7 +295,7 @@
41 You will now see a neat menu guided interface that will automatically probe
42 your devices and try to find out your sound card. You will be asked to pick
43 your sound card from a list. Once that's done, it will ask you permission to
44 -automatically make required changes to <path>/etc/modules.d/alsa</path>.
45 +automatically make required changes to <path>/etc/modprobe.d/alsa.conf</path>.
46 It will then adjust your volume settings to optimum levels, run
47 <c>update-modules</c> and start the <path>/etc/init.d/alsasound</path> service.
48 Once <c>alsaconf</c> exits, you can proceed with setting up the ALSA
49 @@ -617,7 +617,7 @@
50
51 <p>
52 Another reason for error messages similar to the ones above could be a file in
53 -<path>/etc/modules.d</path> supplying a <c>device_mode</c> parameter when it
54 +<path>/etc/modprobe.d</path> supplying a <c>device_mode</c> parameter when it
55 isn't required. Confirm that this is indeed the issue and find out which file
56 is the culprit.
57 </p>
58 @@ -627,7 +627,7 @@
59 # <i>dmesg | grep device_mode</i>
60 snd: Unknown parameter `device_mode'
61 <comment>(Now, to get to the source of the issue)</comment>
62 -# <i>grep device_mode /etc/modules.d/*</i>
63 +# <i>grep device_mode /etc/modprobe.d/*</i>
64 </pre>
65
66 <p>
67 @@ -783,12 +783,12 @@
68 <p>
69 You can have more than one sound card in your system simultaneously, provided
70 that you have built ALSA as modules in your kernel. You just need to specify
71 -which should be started first in <path>/etc/modules.d/alsa</path>. Your cards
72 +which should be started first in <path>/etc/modprobe.d/alsa.conf</path>. Your cards
73 are identified by their driver names inside this file. 0 is the first card, 1 is
74 the second, and so on. Here's an example for a system with two sound cards.
75 </p>
76
77 -<pre caption="Two sound cards in /etc/modules.d/alsa">
78 +<pre caption="Two sound cards in /etc/modprobe.d/alsa.conf">
79 options snd-emu10k1 index=0
80 options snd-via82xx index=1
81 </pre>
82 @@ -799,7 +799,7 @@
83 sound cards, two of which are the same Intel High Definition Audio card.
84 </p>
85
86 -<pre caption="Multiple sound cards in /etc/modules.d/alsa">
87 +<pre caption="Multiple sound cards in /etc/modprobe.d/alsa.conf">
88 options snd-ymfpci index=0
89 options snd-hda-intel index=1,2
90 </pre>