From: Klaus Goger <klaus.goger@theobroma-systems.com>
Date: Thu, 4 Jan 2018 06:22:11 +0000 (+0100)
Subject: spl: include timezone in banner
X-Git-Tag: v2025.01-rc5-pxa1908~4962
X-Git-Url: http://git.dujemihanovic.xyz/browse.php?a=commitdiff_plain;h=0b674a3120d26aa1ccaf60697cbc7de97a633d91;p=u-boot.git

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>
---

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();