How to use the "make mrproper" command? I am working on Linux From Scratch

I am trying to create Linux From Scratch and I got to this part: linux headers

Make sure that the previous step has no obsolete files and dependencies:

make mrproper

I do not understand: in which directory should I run this command? In one of them?

$LFS/sources/gcc-build
$LFS/sources/gcc-4.4.3

Please, help!

+3
source share
3 answers

No, you should run this (next) in the directory in which you unpacked the original tarball of the kernel.

+1
source

What happens after gcc use

cd $LFS/sources
tar xvjf linux*
cd linux*
make mproper
make headers_check
make INSTALL_HDR_PATH=dest headers_install
cp -rv dest/include/* /tools/include

cd $LFS/sources , . tar xvjf linux * lunix api (j xvjf ) cd linux * , make mproper - make   headers_check   make INSTALL_HDR_PATH = dest headers_install   cp -rv dest/include/*/tools/include

0

Starts make mrproperor make distcleanreturns the original kernel tree to its unspecified state. This means that you have lost your .config file. Before compiling the kernel, you will need to create a new .config file.

0
source

All Articles