Searched refs:epochfile (Results 1 – 1 of 1) sorted by relevance
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | reproducible.py | 165 def epochfile_read(epochfile, d): argument 167 if cached and efile == epochfile: 170 if cached and epochfile != efile: 171 bb.debug(1, "Epoch file changed from %s to %s" % (efile, epochfile)) 175 with open(epochfile, 'r') as f: 184 …bb.debug(1, "Cannot find %s. SOURCE_DATE_EPOCH will default to %d" % (epochfile, source_date_epoch… 186 d.setVar('__CACHED_SOURCE_DATE_EPOCH', (str(source_date_epoch), epochfile)) 189 def epochfile_write(source_date_epoch, epochfile, d): argument 192 bb.utils.mkdirhier(os.path.dirname(epochfile)) 194 tmp_file = "%s.new" % epochfile [all …]
|