aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07
diff options
context:
space:
mode:
authorBryan Kadzban <bryan@linuxfromscratch.org>2010-01-27 04:55:48 +0000
committerBryan Kadzban <bryan@linuxfromscratch.org>2010-01-27 04:55:48 +0000
commitb67f2d68ef9267e8893c0307174b538e327d772a (patch)
tree1dbd74d9409953b3f8627d2de9154f6446ff10e8 /chapter07
parent279eb4fa0f1328645f910e2a6abd7e93b931c14d (diff)
Move from /etc/modprobe.conf to /etc/modprobe.d/*.conf, since module-init-tools now complains about the former. Fixes #2560.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9167 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07')
-rw-r--r--chapter07/udev.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/chapter07/udev.xml b/chapter07/udev.xml
index 468a5035f..8084b9ea6 100644
--- a/chapter07/udev.xml
+++ b/chapter07/udev.xml
@@ -235,8 +235,9 @@
enhances the functionality of <emphasis>snd-pcm</emphasis> by making the
sound cards available to OSS applications), configure
<command>modprobe</command> to load the wrapper after Udev loads the
- wrapped module. To do this, add an <quote>install</quote> line in
- <filename>/etc/modprobe.conf</filename>. For example:</para>
+ wrapped module. To do this, add an <quote>install</quote> line in any
+ <filename>/etc/modprobe.d/<replaceable>&lt;filename&gt;</replaceable>.conf</filename>
+ file. For example:</para>
<screen role="nodump"><literal>install snd-pcm /sbin/modprobe -i snd-pcm ; \
/sbin/modprobe snd-pcm-oss ; true</literal></screen>
@@ -252,8 +253,8 @@
<sect3>
<title>Udev loads some unwanted module</title>
- <para>Either don't build the module, or blacklist it in
- <filename>/etc/modprobe.conf</filename> file as done with the
+ <para>Either don't build the module, or blacklist it in a
+ <filename>/etc/modprobe.d/blacklist.conf</filename> file as done with the
<emphasis>forte</emphasis> module in the example below:</para>
<screen role="nodump"><literal>blacklist forte</literal></screen>