common: board_info: print "AArch32" cpu mode
Change-Id: I7384f1fd1e8cad69464a3b218d7570e044905daa Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
This commit is contained in:
parent
74ab8aa2e7
commit
d935323b7d
|
|
@ -27,5 +27,10 @@ int __weak show_board_info(void)
|
||||||
printf("Model: %s\n", model);
|
printf("Model: %s\n", model);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_ARM64_BOOT_AARCH32
|
||||||
|
if (!(gd->flags & GD_FLG_RELOC))
|
||||||
|
printf("CPU: AArch32\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
return checkboard();
|
return checkboard();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue