summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-22 22:12:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-10 00:22:51 +0000
commit39e48aae92d103fc35ccbac2c801e3842aba9ea3 (patch)
tree536e5d0f36337d84ae1cab2d0261ad3d8e591243 /meta/classes
parentc7bcc06ce710c0dd64496a5105294027b0720ca6 (diff)
downloadpoky-39e48aae92d103fc35ccbac2c801e3842aba9ea3.tar.gz
reproducible: Improve SOURCE_DATE_EPOCH_FALLBACK handling
Ensure the fallback value if used is written to the SDE file and hence stored in sstate, reducing any confusion within the code over '0' values. Bump the HASHEQUIV_VERSION since we've had a ton of trouble with ensuring this rolls out correctly on the autobuilder so others may too, take a clean slate for it. (From OE-Core rev: 1f218351c2ef702c76b1d1e793a624e1a4f5079b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 53ffffa32b76330835287dfc05d4e4796841af08) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/reproducible_build.bbclass4
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass
index 9e806c0b75..f06e00d70d 100644
--- a/meta/classes/reproducible_build.bbclass
+++ b/meta/classes/reproducible_build.bbclass
@@ -84,10 +84,6 @@ python create_source_date_epoch_stamp() {
84 84
85 source_date_epoch = oe.reproducible.get_source_date_epoch(d, d.getVar('S')) 85 source_date_epoch = oe.reproducible.get_source_date_epoch(d, d.getVar('S'))
86 86
87 if source_date_epoch == 0 :
88 bb.debug(1, "source_date_epoch is 0, using SOURCE_DATE_EPOCH_FALLBACK instead.")
89 source_date_epoch = int(d.getVar('SOURCE_DATE_EPOCH_FALLBACK'))
90
91 bb.debug(1, "SOURCE_DATE_EPOCH: %d" % source_date_epoch) 87 bb.debug(1, "SOURCE_DATE_EPOCH: %d" % source_date_epoch)
92 bb.utils.mkdirhier(d.getVar('SDE_DIR')) 88 bb.utils.mkdirhier(d.getVar('SDE_DIR'))
93 with open(epochfile, 'w') as f: 89 with open(epochfile, 'w') as f: