mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
generic-board: show model name in board_init_f() too
The common/board_r.c has show_model_r() to display the model name if the DTB has a "model" property. It sounds useful to have a similar function in common/board_f.c too because most of the boards show their board name before relocation. Instead of implementing the same function in both common/board_f.c and common/board_r.c, let's split it up into common/show_board_info.c. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
committed by
Simon Glass
parent
5468461d1e
commit
0365ffcc0b
@@ -476,22 +476,6 @@ static int initr_api(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
|
||||
static int show_model_r(void)
|
||||
{
|
||||
/* Put this here so it appears on the LCD, now it is ready */
|
||||
# ifdef CONFIG_OF_CONTROL
|
||||
const char *model;
|
||||
|
||||
model = (char *)fdt_getprop(gd->fdt_blob, 0, "model", NULL);
|
||||
printf("Model: %s\n", model ? model : "<unknown>");
|
||||
# else
|
||||
checkboard();
|
||||
# endif
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* enable exceptions */
|
||||
#ifdef CONFIG_ARM
|
||||
static int initr_enable_interrupts(void)
|
||||
@@ -801,7 +785,7 @@ init_fnc_t init_sequence_r[] = {
|
||||
#endif
|
||||
console_init_r, /* fully init console as a device */
|
||||
#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
|
||||
show_model_r,
|
||||
show_board_info,
|
||||
#endif
|
||||
#ifdef CONFIG_ARCH_MISC_INIT
|
||||
arch_misc_init, /* miscellaneous arch-dependent init */
|
||||
|
Reference in New Issue
Block a user