mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
ARM: mvebu: clearfog: print TLV stored product name
Use the data from EEPROM TLV to display the board identity. Reviewed-by: Stefan Roese <sr@denx.de> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
This commit is contained in:
committed by
Stefan Roese
parent
a2e41ad2a9
commit
7211fa6f5a
@@ -156,7 +156,16 @@ int board_init(void)
|
||||
|
||||
int checkboard(void)
|
||||
{
|
||||
puts("Board: SolidRun ClearFog\n");
|
||||
char *board = "ClearFog";
|
||||
|
||||
cf_read_tlv_data();
|
||||
if (strlen(cf_tlv_data.tlv_product_name[0]) > 0)
|
||||
board = cf_tlv_data.tlv_product_name[0];
|
||||
|
||||
printf("Board: SolidRun %s", board);
|
||||
if (strlen(cf_tlv_data.tlv_product_name[1]) > 0)
|
||||
printf(", %s", cf_tlv_data.tlv_product_name[1]);
|
||||
puts("\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user