summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorKlaus Goger <klaus.goger@theobroma-systems.com>2018-01-04 07:22:11 +0100
committerTom Rini <trini@konsulko.com>2018-01-29 12:50:13 -0500
commit0b674a3120d26aa1ccaf60697cbc7de97a633d91 (patch)
tree0d789cd9e974f694bd6d4b51f7e914558bb4058a /common
parentaf09eba64f808946c6c901436e7dfabd17a11498 (diff)
spl: include timezone in banner
Include the timezone in the SPL banner so the timestamp matches with that from u-boot proper. Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c
index 2ebab8f0c2..b1ce56d0d0 100644
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -479,7 +479,7 @@ void preloader_console_init(void)
#ifndef CONFIG_SPL_DISABLE_BANNER_PRINT
puts("\nU-Boot SPL " PLAIN_VERSION " (" U_BOOT_DATE " - " \
- U_BOOT_TIME ")\n");
+ U_BOOT_TIME " " U_BOOT_TZ ")\n");
#endif
#ifdef CONFIG_SPL_DISPLAY_PRINT
spl_display_print();