How to build twice the same Linux Kernel sources and get the the same checksum - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:26:43Zhttp://stackoverflow.com/feeds/question/1057087http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1057087/how-to-build-twice-the-same-linux-kernel-sources-and-get-the-the-same-checksum2How to build twice the same Linux Kernel sources and get the the same checksumgsempe2009-06-29T08:01:25Z2009-07-31T21:12:18Z
<p>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?</p>
http://stackoverflow.com/questions/1057087/how-to-build-twice-the-same-linux-kernel-sources-and-get-the-the-same-checksum/1057103#10571031Answer by Visage for How to build twice the same Linux Kernel sources and get the the same checksumVisage2009-06-29T08:06:25Z2009-06-29T08:06:25Z<p>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)</p>
http://stackoverflow.com/questions/1057087/how-to-build-twice-the-same-linux-kernel-sources-and-get-the-the-same-checksum/1057104#10571041Answer by Kevin Montrose for How to build twice the same Linux Kernel sources and get the the same checksumKevin Montrose2009-06-29T08:06:35Z2009-06-29T08:06:35Z<p>Presumably, building the kernel in the same environment will result in the same checksum. So, same compiler (same version of the same compiler), <strong>exactly</strong> the same source, same dependencies (if that's even applicable to a kernel compile), etc.</p>
http://stackoverflow.com/questions/1057087/how-to-build-twice-the-same-linux-kernel-sources-and-get-the-the-same-checksum/1057329#10573293Answer by shodanex for How to build twice the same Linux Kernel sources and get the the same checksumshodanex2009-06-29T09:08:28Z2009-06-29T09:08:28Z<p>The date of build is included in the version, see init version.c :</p>
<pre><code>const char linux_banner[] =
"Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";
</code></pre>
<p>and UTS_VERSION is defined in include/linux/compile.h :</p>
<pre><code>/* This file is auto generated, version 1 */
/* PREEMPT */
#define UTS_MACHINE "arm"
#define UTS_VERSION "#1 PREEMPT Mon Jun 29 10:49:17 CEST 2009"
#define LINUX_COMPILE_TIME "10:49:17"
#define LINUX_COMPILE_BY "cynove"
#define LINUX_COMPILE_HOST "jp"
#define LINUX_COMPILE_DOMAIN "evonyc"
#define LINUX_COMPILER "gcc version 4.3.2 (crosstool-NG-1.4.0) "
</code></pre>
<p>compile.h is generated by scripts/mkcompile_h, where you find the following line :</p>
<pre><code>UTS_VERSION="$UTS_VERSION $CONFIG_FLAGS `LC_ALL=C LANG=C date`"
</code></pre>
<p>By removing the <code>date</code> from the pervious line, you should be able to get rid of the build time dependency.</p>
http://stackoverflow.com/questions/1057087/how-to-build-twice-the-same-linux-kernel-sources-and-get-the-the-same-checksum/1057333#10573330Answer by felipec for How to build twice the same Linux Kernel sources and get the the same checksumfelipec2009-06-29T09:10:20Z2009-06-29T09:10:20Z<p>Even a simple hello world compiled twice results in different binaries. Somehow the linker is adding some information that changes in each build.</p>
http://stackoverflow.com/questions/1057087/how-to-build-twice-the-same-linux-kernel-sources-and-get-the-the-same-checksum/1214926#12149260Answer by gsempe for How to build twice the same Linux Kernel sources and get the the same checksumgsempe2009-07-31T21:12:18Z2009-07-31T21:12:18Z<p>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.</p>
<p>Thank you. Your answers help me a lot to resolve my problem.</p>