diff options
author | Klaus Goger | 2018-01-04 07:22:11 +0100 |
---|---|---|
committer | Tom Rini | 2018-01-29 12:50:13 -0500 |
commit | 0b674a3120d26aa1ccaf60697cbc7de97a633d91 (patch) | |
tree | 0d789cd9e974f694bd6d4b51f7e914558bb4058a /common/spl/spl.c | |
parent | af09eba64f808946c6c901436e7dfabd17a11498 (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/spl/spl.c')
-rw-r--r-- | common/spl/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index 2ebab8f0c28..b1ce56d0d07 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(); |