[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: What commands will compile a Kernel?



Peter Mott <mott@mathworks.com> writes:

> Is the following from a bash shell prompt a good way to do it?
> 
> (make dep && make clean && make boot && make modules) > make.log 2>&1
> 
> Unlike separating commands by ';' the '&&' makes it stop if an error occurs.

Try

(make config && make dep && make clean && make boot && make modules && 
make modules_install) 2>&1 | tee make.log

That way you will also see whats going on.
Alternatively you could use your line and do a "tail -f make.log" on
antoer console.

Don't forget to install the modules after compileing. :)

May the Source be with you.
			Goswin


Reply to: