Kernel Build Logs location -


is there location kernel build logs found while doing standard kernel compilation. 1 way redirect output file.

source <build_script> > build_log_file.txt 

it goes stdout , stderr. if want go file instead can:

make > <logfile> 1>&2 

if want output go file , screen can

make 2>&1 | tee <logfile> 

Popular posts from this blog