From: Chen Qi <qi.c...@windriver.com>

Currently, the KERNEL_DEBUG_TIMESTAMPS is not working as expected
at rebuild. That is, even if we set it to "1", the kernel build time
is not changed. The problem could be reproduced by the following steps.
  1. bitbake core-image-minimal; start image and check `uname -a` output.
  2. set in local.conf: KERNEL_DEBUG_TIMESTAMPS = "1"
  3. bitbake core-image-minimal; start image and check `uname -a` output.

It's expected that after enabling KERNEL_DEBUG_TIMESTAMPS, the kernel
build time will be set to current date. But it's not. This is because
the compile.h was not re-generated when do_compile task was re-executed.

In mkcompile_h, we have:
"""
 # Only replace the real compile.h if the new one is different,
 # in order to preserve the timestamp and avoid unnecessary
 # recompilations.
 # We don't consider the file changed if only the date/time changed,
 # unless KBUILD_BUILD_TIMESTAMP was explicitly set (e.g. for
 # reproducible builds with that value referring to a commit timestamp).
 # A kernel config change will increase the generation number, thus
 # causing compile.h to be updated (including date/time) due to the
 # changed comment in the
 # first line.
"""
It has made it very clear that it will not be re-generated unless
we have KBUILD_BUILD_TIMESTAMP set explicitly. So we set this variable
explicitly in do_compile to fix this issue.

Signed-off-by: Chen Qi <qi.c...@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.bell...@bootlin.com>
(cherry picked from commit 1b68c2d2d385013a1c535ef81172494302a36d74)
Signed-off-by: Steve Sakoman <st...@sakoman.com>
---
 meta/classes/kernel.bbclass | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index a965e187e4..8b89360991 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -321,6 +321,10 @@ kernel_do_compile() {
                export KBUILD_BUILD_TIMESTAMP="$ts"
                export KCONFIG_NOTIMESTAMP=1
                bbnote "KBUILD_BUILD_TIMESTAMP: $ts"
+       else
+               ts=`LC_ALL=C date`
+               export KBUILD_BUILD_TIMESTAMP="$ts"
+               bbnote "KBUILD_BUILD_TIMESTAMP: $ts"
        fi
        # The $use_alternate_initrd is only set from
        # do_bundle_initramfs() This variable is specifically for the
@@ -367,6 +371,10 @@ do_compile_kernelmodules() {
                export KBUILD_BUILD_TIMESTAMP="$ts"
                export KCONFIG_NOTIMESTAMP=1
                bbnote "KBUILD_BUILD_TIMESTAMP: $ts"
+       else
+               ts=`LC_ALL=C date`
+               export KBUILD_BUILD_TIMESTAMP="$ts"
+               bbnote "KBUILD_BUILD_TIMESTAMP: $ts"
        fi
        if (grep -q -i -e '^CONFIG_MODULES=y$' ${B}/.config); then
                cc_extra=$(get_cc_option)
-- 
2.25.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#174120): 
https://lists.openembedded.org/g/openembedded-core/message/174120
Mute This Topic: https://lists.openembedded.org/mt/95384519/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to