common: board_info: print "AArch32" cpu mode

Change-Id: I7384f1fd1e8cad69464a3b218d7570e044905daa
Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
This commit is contained in:
Joseph Chen 2019-10-24 10:40:51 +08:00
parent 74ab8aa2e7
commit d935323b7d
1 changed files with 5 additions and 0 deletions

View File

@ -27,5 +27,10 @@ int __weak show_board_info(void)
printf("Model: %s\n", model);
#endif
#ifdef CONFIG_ARM64_BOOT_AARCH32
if (!(gd->flags & GD_FLG_RELOC))
printf("CPU: AArch32\n");
#endif
return checkboard();
}