I'm searching if it's possible to build twice the same Linux Kernel (same sources, same environment, same options, same compiler) and get the the same checksum. Anybody knows how to do?
|
|
Quickest way to check would be to make, take a copy, make clean, and then make again. If the checksum matches, then its possible. If not then that suggests that Make is altering some source files in some way (build numbering, build date etc) |
||
|
|
|
|
Presumably, building the kernel in the same environment will result in the same checksum. So, same compiler (same version of the same compiler), exactly the same source, same dependencies (if that's even applicable to a kernel compile), etc. |
||
|
|
|
The date of build is included in the version, see init version.c :
and UTS_VERSION is defined in include/linux/compile.h :
compile.h is generated by scripts/mkcompile_h, where you find the following line :
By removing the |
||
|
|
|
|
Even a simple hello world compiled twice results in different binaries. Somehow the linker is adding some information that changes in each build. |
||
|
|
|
shodanex's answer is right but incomplete. After some research I found Linux kernel binary embeds a default ramfs which is another reason of differences between two kernels compilations (CPIO RAMFS header embeds date). It's impossible to disable this feature but it's possible to provide a default ramfs. When you do so, you get exactly the same checksum. Thank you. Your answers help me a lot to resolve my problem. |
||
|
|
