简体   繁体   中英

Kernel Build Logs location

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM