diff options
Diffstat (limited to 'chapter05/kernel-exp.xml')
-rw-r--r-- | chapter05/kernel-exp.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chapter05/kernel-exp.xml b/chapter05/kernel-exp.xml index 475984ee8..99890c9ed 100644 --- a/chapter05/kernel-exp.xml +++ b/chapter05/kernel-exp.xml @@ -20,13 +20,13 @@ checks, but what we do care about is that make dep creates those aforementioned files in $LFS/usr/src/linux/include/linux we will be needing later on.</para> -<para><userinput>cp -a ../src/linux/include/linux .</userinput> and -<userinput>mkdir asm && cp -a ../src/linux/include/asm/* .</userinput>: +<para><userinput>cp -af ../src/linux/include/linux .</userinput> and +<userinput>mkdir asm && cp -af ../src/linux/include/asm/* .</userinput>: These commands copy the kernel headers in the <filename>$LFS/usr/include</filename> directory.</para> -<para><userinput>chown root.root $LFS/usr/include/linux -R </userinput> and -<userinput>chown root.root $LFS/usr/include/asm -R </userinput>: +<para><userinput>chown -R root.root $LFS/usr/include/linux</userinput> and +<userinput>chown -R root.root $LFS/usr/include/asm</userinput>: These commands change the ownership of the <filename>$LFS/usr/include/linux</filename> and the <filename>$LFS/usr/include/asm</filename> directories, plus all the |