diff options
author | Alexander E. Patrakov <alexander@linuxfromscratch.org> | 2004-05-20 01:47:22 +0000 |
---|---|---|
committer | Alexander E. Patrakov <alexander@linuxfromscratch.org> | 2004-05-20 01:47:22 +0000 |
commit | 72b0264b85cbe2e8841e0386f8f698e414afcbf3 (patch) | |
tree | 13b539527dc183ccf12ab69897b394af0e66f09e /chapter08 | |
parent | cdb5a787761f3085c243ea0d68a5234ebc9bf225 (diff) |
Added hotplug to HEAD
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3671 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/fstab.xml | 5 | ||||
-rw-r--r-- | chapter08/kernel.xml | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/chapter08/fstab.xml b/chapter08/fstab.xml index 6c8738cc8..3c76ff2fa 100644 --- a/chapter08/fstab.xml +++ b/chapter08/fstab.xml @@ -25,7 +25,7 @@ proc /proc proc defaults 0 0 sysfs /sys sysfs defaults 0 0 devpts /dev/pts devpts gid=4,mode=620 0 0 shm /dev/shm tmpfs defaults 0 0 - +usbfs /proc/bus/usb usbfs devgid=15,devmode=0660 0 0 # End /etc/fstab <userinput>EOF</userinput></screen> @@ -33,7 +33,8 @@ shm /dev/shm tmpfs defaults 0 0 and <filename>fff</filename> with the values appropriate for your system -- for example <filename>hda2</filename>, <filename>hda5</filename> and <filename>reiserfs</filename>. For all the details on the six fields in this -table, see <command>man 5 fstab</command>.</para> +table, see <command>man 5 fstab</command>. Omit the usbfs line if you didn't +compile "USB device filesystem" into the kernel.</para> <para>When using a reiserfs partition, the <emphasis>1 1</emphasis> at the end of the line should be replaced with <emphasis>0 0</emphasis>, as such a diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index f7ba78e97..6013089e5 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -63,6 +63,10 @@ scratch.</para> <quote>Virtual memory file system support</quote> is enabled. It resides within the <quote>File systems</quote> menu and is normally enabled by default.</para> +<para>LFS bootscripts make the assumption that you either compile +"USB device filesystem" directly into the kernel, or don't compile it at +all. They will not work properly if it is a module (usbcore.ko).</para> + <note><para>NPTL requires the kernel to be compiled with GCC 3.x, in this case &gcc-version;. Compiling with 2.95.x is known to cause failures in the glibc testsuite, so do <emphasis>not</emphasis> compile the kernel with gcc 2.95.x |