mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
microblaze: Show u-boot banner
It is nice to see u-boot version. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
07e2822d15
commit
6ba64f24a4
1 changed files with 7 additions and 0 deletions
|
@ -24,6 +24,12 @@
|
|||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
static int display_banner(void)
|
||||
{
|
||||
printf("\n\n%s\n\n", version_string);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* All attempts to come up with a "common" initialization sequence
|
||||
* that works for all boards and architectures failed: some of the
|
||||
|
@ -45,6 +51,7 @@ init_fnc_t *init_sequence[] = {
|
|||
#endif
|
||||
serial_init,
|
||||
console_init_f,
|
||||
display_banner,
|
||||
interrupts_init,
|
||||
timer_init,
|
||||
NULL,
|
||||
|
|
Loading…
Reference in a new issue