[parisc-linux] 2.4.6-pa20 question about modules

Andrew Shugg andrew@neep.com.au
Fri, 20 Jul 2001 13:56:46 +0800


Quoth Joël Soete:
> Just a small tips I use on my i386 linux-box: I launch the make in one line
> and tacke a log which I can so analyze later like:
> 
> make dep clean bzImage modules modules_install 2>&1 | tee /var/tmp/kl-200107.log

Safer to run them separately.  You can still easily log them, there are
many possible ways to do this ...

$ for target in clean dep vmlinuz modules modules_install
> do make $target 2>&1 | tee -a /var/tmp/kl-200107.log
> done

$ (make clean ; make dep ; make vmlinux ; make modules ; make modules_install) 2>&1 | tee -a /var/tmp/kl-200107.log

$ script /var/tmp/kl-200107.log
Script started, output file is /var/tmp/kl-200107.log
$ make clean ; make dep ; make vmlinux ; make modules ; make modules_install ; exit
...
Script done, output file is /var/tmp/kl-200107.log
$


Andrew.

-- 
Andrew Shugg <andrew@neep.com.au>                   http://www.neep.com.au/

"Just remember, Mr Fawlty, there's always someone worse off than yourself."
"Is there?  Well I'd like to meet him.  I could do with a good laugh."