From 0b674a3120d26aa1ccaf60697cbc7de97a633d91 Mon Sep 17 00:00:00 2001 From: Klaus Goger Date: Thu, 4 Jan 2018 07:22:11 +0100 Subject: [PATCH] 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 Reviewed-by: Philipp Tomsich --- common/spl/spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.39.5