Mikel Anniuk
Mikel Anniuk

Reputation: 548

Where can i find last kernel compilation log?

I've compiled custom kernel:

(linux-3.17.4-gentoo, Linux localhost 3.17.4-gentoo #9 SMP Thu May 21 16:23:08 EEST 2015 x86_64 Intel(R) Core(TM) i3-2350M CPU @ 2.30GHz GenuineIntel GNU/Linux)

and saw some warnings few days ago. Is there any log file where i can see them again?

Upvotes: 2

Views: 2120

Answers (1)

vwvolodya
vwvolodya

Reputation: 2344

Genkernel generates a log file here /var/log/genkernel.log I think a log will only be made if you redirect stdout and stderr to a file, when you run the make's.

make > build.log 2>&1

Upvotes: 4

Related Questions