Author: robert Date: 2008-10-25 14:03:48 -0600 (Sat, 25 Oct 2008) New Revision: 1467
Modified: branches/Onward/kernel-config.txt branches/Onward/temporary_system/linux-kernel.txt Log: Install kernel modules. Add posix capabilities to the kernel config. Modified: branches/Onward/kernel-config.txt =================================================================== --- branches/Onward/kernel-config.txt 2008-10-25 19:45:31 UTC (rev 1466) +++ branches/Onward/kernel-config.txt 2008-10-25 20:03:48 UTC (rev 1467) @@ -1,6 +1,19 @@ This page needs to add additional information about what is needed to get the Glibc test suite to pass, such as the SysV module. +Enable extended attributes for your file system, for file system Posix +capabilities, and enable security markings: + CONFIG_EXT2_FS_XATTR + CONFIG_EXT3_FS_XATTR + CONFIG_REISERFS_FS_XATTR + CONFIG_EXT2_FS_SECURITY + CONFIG_EXT3_FS_SECURITY + CONFIG_REISERFS_FS_SECURITY + +Enable Linux capabilities, and filesystem capabilities: + CONFIG_SECURITY_CAPABILITIES + CONFIG_SECURITY_FILE_CAPABILITIES + All the Grsec and PaX options can be enabled, but some should be disabled for the best security. Modified: branches/Onward/temporary_system/linux-kernel.txt =================================================================== --- branches/Onward/temporary_system/linux-kernel.txt 2008-10-25 19:45:31 UTC (rev 1466) +++ branches/Onward/temporary_system/linux-kernel.txt 2008-10-25 20:03:48 UTC (rev 1467) @@ -16,5 +16,9 @@ # Install the kernel: make -C ../ O=$(pwd) && -cp -v arch/x86/boot/bzImage /tools/boot/hlfs-kernel +cp -v arch/x86/boot/bzImage /tools/boot/hlfs-kernel && +# And modules: + +make -C ../ O=$(pwd) INSTALL_MOD_PATH=/tools modules_install + -- http://linuxfromscratch.org/mailman/listinfo/hlfs-book FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
