litex: soc: do not add the timestamp in the BIOS if it was disabled

Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
Alessandro Comodi 2020-11-18 17:35:54 +01:00
parent 444a605dea
commit 3c0d41781f
2 changed files with 3 additions and 0 deletions

View File

@ -1061,6 +1061,7 @@ class LiteXSoC(SoC):
self.check_if_exists(name)
if with_build_time:
identifier += " " + build_time()
self.add_config("HAS_TIMESTAMP")
setattr(self.submodules, name, Identifier(identifier))
self.csr.add(name + "_mem", use_loc_if_exists=True)

View File

@ -97,7 +97,9 @@ int main(int i, char **c)
printf(" (c) Copyright 2012-2020 Enjoy-Digital\n");
printf(" (c) Copyright 2007-2015 M-Labs\n");
printf("\n");
#ifdef CONFIG_HAS_TIMESTAMP
printf(" BIOS built on "__DATE__" "__TIME__"\n");
#endif
crcbios();
printf("\n");
printf(" Migen git sha1: "MIGEN_GIT_SHA1"\n");