Is there a location where kernel build logs are found while doing standard kernel compilation. One way is to redirect the output to the file.
source <build_script> > build_log_file.txt
Is there a location where kernel build logs are found while doing standard kernel compilation. One way is to redirect the output to the file.
source <build_script> > build_log_file.txt
It goes into stdout and stderr. If you want it to go to a file instead you can:
make > <logfile> 1>&2
If you want the output to go into file and the screen you can
make 2>&1 | tee <logfile>