diff options
author | Jon Medhurst <tixy@linaro.org> | 2014-02-17 12:18:24 +0000 |
---|---|---|
committer | Dan Handley <dan.handley@arm.com> | 2014-03-05 16:21:14 +0000 |
commit | fb05246201a2d708fb4f3d5febf47e1fc931fa7e (patch) | |
tree | c233476c8c9ff2442d58a5f1d18184fa12c16a99 /bl31/bl31_main.c | |
parent | 38aa76a87f6cc3e955fabe181e121fe26a4ecd63 (diff) |
Generate build time and date message at link time.
So it updates each time a bootloader changes, not just when bl*_main.c
files are recompiled.
Fixes ARM-software/tf-issues#33
Change-Id: Ie8e1a7bd7e1913d2e96ac268606284f76af8c5ab
Signed-off-by: Jon Medhurst <tixy@linaro.org>
Diffstat (limited to 'bl31/bl31_main.c')
-rw-r--r-- | bl31/bl31_main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bl31/bl31_main.c b/bl31/bl31_main.c index 82449f5e..536bb864 100644 --- a/bl31/bl31_main.c +++ b/bl31/bl31_main.c @@ -83,9 +83,8 @@ void bl31_main(void) /* Perform platform setup in BL1 */ bl31_platform_setup(); -#if defined (__GNUC__) - printf("BL31 Built : %s, %s\n\r", __TIME__, __DATE__); -#endif + printf("BL31 %s\n\r", build_message); + /* Initialise helper libraries */ bl31_lib_init(); |