diff options
author | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2006-07-10 05:28:34 +0000 |
---|---|---|
committer | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2006-07-10 05:28:34 +0000 |
commit | 38d3a31fc9dfbf1b6ea481e67be0b0e8c61cbed9 (patch) | |
tree | 3c8b4164c9e4a69bf6ffa05de9794bec1d97faa5 | |
parent | a85d4b9b1bf000cb6892ba8a8cfd479a2231d3f9 (diff) |
Specified the full path to modprobe in the example rule.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7651 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 5 | ||||
-rw-r--r-- | chapter07/udev.xml | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 656cbaaa7..1b4d1bf3b 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -39,6 +39,11 @@ <para>July 10, 2006</para> <itemizedlist> <listitem> + <para>[dnicholson] - Specified the full path to + <command>modprobe</command> in the example modprobe rule. + Closes ticket #1812.</para> + </listitem> + <listitem> <para>[dnicholson] - Remove the <command>locale country</command> command from the heuristic to determine the locale in the Bash Shell Startup Files since it diff --git a/chapter07/udev.xml b/chapter07/udev.xml index 2785a6b20..50e66f759 100644 --- a/chapter07/udev.xml +++ b/chapter07/udev.xml @@ -236,8 +236,8 @@ wrapped module. To do this, add an <quote>install</quote> line in <filename>/etc/modprobe.conf</filename>. For example:</para> -<screen role="nodump"><literal>install snd-pcm modprobe -i snd-pcm ; modprobe \ - snd-pcm-oss ; true</literal></screen> +<screen role="nodump"><literal>install snd-pcm /sbin/modprobe -i snd-pcm ; \ + /sbin/modprobe snd-pcm-oss ; true</literal></screen> <para>If the module in question is not a wrapper and is useful by itself, configure the <command>S05modules</command> bootscript to load this |