From: Klaus Goger Date: Thu, 4 Jan 2018 06:22:11 +0000 (+0100) Subject: spl: include timezone in banner X-Git-Tag: v2018.03-rc1~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0b674a3120d26aa1ccaf60697cbc7de97a633d91;p=u-boot 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 --- 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();