diff options
author | Wu, Josh <Josh.wu@atmel.com> | 2015-02-04 11:03:32 +0800 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2015-04-01 01:04:26 +0200 |
commit | 02fc64d1d98be7801e6b21dbf0d67555b0e05213 (patch) | |
tree | 9cc2a85f936418d35e21a7f2137a4cd779eabae8 /board/atmel/sama5d4ek | |
parent | 662e2acb46250881ec26bc8366fc9eb1856cb7c2 (diff) | |
download | u-boot-imx-02fc64d1d98be7801e6b21dbf0d67555b0e05213.zip u-boot-imx-02fc64d1d98be7801e6b21dbf0d67555b0e05213.tar.gz u-boot-imx-02fc64d1d98be7801e6b21dbf0d67555b0e05213.tar.bz2 |
ARM: at91: sama5d4: display the U-Boot version on LCD
This patch will display the U-Boot version on LCD.
Signed-off-by: Josh Wu <josh.wu@atmel.com>
Acked-by: Bo Shen <voice.shen@atmel.com>
Diffstat (limited to 'board/atmel/sama5d4ek')
-rw-r--r-- | board/atmel/sama5d4ek/sama5d4ek.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/atmel/sama5d4ek/sama5d4ek.c b/board/atmel/sama5d4ek/sama5d4ek.c index 46e5041..e9bbb4b 100644 --- a/board/atmel/sama5d4ek/sama5d4ek.c +++ b/board/atmel/sama5d4ek/sama5d4ek.c @@ -24,6 +24,7 @@ #include <netdev.h> #include <nand.h> #include <spi.h> +#include <version.h> DECLARE_GLOBAL_DATA_PTR; @@ -174,6 +175,7 @@ void lcd_show_board_info(void) int i; char temp[32]; + lcd_printf("%s\n", U_BOOT_VERSION); lcd_printf("2014 ATMEL Corp\n"); lcd_printf("at91@atmel.com\n"); lcd_printf("%s CPU at %s MHz\n", get_cpu_name(), |