diff options
author | Chris Packham <judge.packham@gmail.com> | 2015-05-10 21:02:09 +1200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-05-27 13:35:55 -0400 |
commit | e186851ae4f0a4c8b75108930b61a5f74baf6ed4 (patch) | |
tree | 8cff2b18403594da053a3cc97878bfc66ef98808 /include/version.h | |
parent | 0373a7e91b1fc1c3652669a4481219daf06e12e9 (diff) | |
download | u-boot-e186851ae4f0a4c8b75108930b61a5f74baf6ed4.tar.gz u-boot-e186851ae4f0a4c8b75108930b61a5f74baf6ed4.tar.bz2 u-boot-e186851ae4f0a4c8b75108930b61a5f74baf6ed4.zip |
Makefile: Add U_BOOT_TZ and include in version
Define U_BOOT_TZ alongside U_BOOT_TIME and U_BOOT_DATE and use it to
include the timezone in the version output.
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'include/version.h')
-rw-r--r-- | include/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/version.h b/include/version.h index d6c7cf2ae6..777e9f68fa 100644 --- a/include/version.h +++ b/include/version.h @@ -19,7 +19,7 @@ #endif #define U_BOOT_VERSION_STRING U_BOOT_VERSION " (" U_BOOT_DATE " - " \ - U_BOOT_TIME ")" CONFIG_IDENT_STRING + U_BOOT_TIME " " U_BOOT_TZ ")" CONFIG_IDENT_STRING #ifndef __ASSEMBLY__ extern const char version_string[]; |