diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-05-11 00:58:48 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-05-11 00:58:48 +0000 |
commit | 4e7d6a61b5867f3d159538f49a1e9971a828aa4b (patch) | |
tree | e83064705e34355db0532969195cbe6eb3d52b78 /chapter08/kernel.xml | |
parent | b3eb5259f14649c364e6dff01b998c2e6ae2d3b1 (diff) |
Add explanations for kernel options in Section 8.3. Simplified the options due
to removal of systemd.
Add a sed to ksyslogd to prevent errors in some circumstances.
Update to man-pages-3.66.
Update to linux-3.14.3.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10558 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08/kernel.xml')
-rw-r--r-- | chapter08/kernel.xml | 56 |
1 files changed, 43 insertions, 13 deletions
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index 7d9747aec..930e5a007 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -72,25 +72,55 @@ <para>Be sure to enable or disable following features:</para> - <screen role="nodump">General setup ---> - [*] open by fhandle syscalls - [*] Control Group support -Processor type and features ---> - [*] Enable seccomp to safely compute untrusted bytecode -Networking support ---> - Networking options ---> - <*> The IPv6 protocol + <screen role="nodump"> Device Drivers ---> Generic Driver Options ---> () path to uevent helper [*] Maintain a devtmpfs filesystem to mount at /dev - [ ] Fallback user-helper invocation for firmware loading File systems ---> [*] Inotify support for userspace - <*> Kernel automounter version 4 support (also supports v3) - Pseudo filesystems ---> - [*] Tmpfs POSIX Access Control Lists - [*] Tmpfs extended attributes</screen></note> + <*> Kernel automounter version 4 support (also supports v3)</screen></note> + + <variablelist> + <title>The rationale for the above configuration items:</title> + + <varlistentry> + <term><parameter>path to uevent helper</parameter></term> + <listitem> + <para>Having an entry in this space will interfere with device + management when using udev/eudev. </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><parameter>Maintain a devtmpfs</parameter></term> + <listitem> + <para>This will create automated device nodes which are populated by the + kernel, even without udev running. Udev then runs on top of this, + managing permissions and adding symlinks. This configuration + itme is required for all users of udev/eudev. </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><parameter>Inotify support</parameter></term> + <listitem> + <para>This allows monitoring of both files and directories via a single + open file descriptor.</para> + </listitem> + </varlistentry> + + <varlistentry> + <term><parameter>Kernel automounter version 4 support</parameter></term> + <listitem> + <para>This allows Desktop + Environments to automatically mount usb sticks and similar, this is + needed to work around a bug with network filesystems which are to be + mounted on boot.</para> + </listitem> + </varlistentry> + + </variablelist> <screen role="nodump"><userinput>make LANG=<replaceable><host_LANG_value></replaceable> LC_ALL= menuconfig</userinput></screen> |