diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2010-01-28 22:12:29 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2010-01-28 22:12:29 +0000 |
commit | 23ba7a0025fbefcc9d32215ae256e07fe230dfff (patch) | |
tree | d991c04984f013786b59164282a1e8bb33e0fc6b | |
parent | 0e038d1b8614cf8aeb015f0f44b8730034990837 (diff) |
Fix typo/omission in creation of /etc/modprobe.d directory
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9171 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter08/kernel.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index 8cb0b89c7..9d8c23437 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -197,7 +197,7 @@ cp -r Documentation/* /usr/share/doc/linux-&linux-version;</userinput></screen> <para>Create a new file <filename>/etc/modprobe.d/usb.conf</filename> by running the following:</para> -<screen><userinput>install -v -m755 /etc/modprobe.d +<screen><userinput>install -v -m755 -d /etc/modprobe.d cat > /etc/modprobe.d/usb.conf << "EOF" <literal># Begin /etc/modprobe.d/usb.conf |