Hi, I am trying to bring up processor SDK 8.0 Linux on my custom board based on AM64 GPEVM.
Based on my logs, I think that the U-boot fails to load due to EEPROM not having the required data. I have an EEPROM at a different address than the EVM. I would like to know how we can achieve the following:
1. How can we bypass or hardcode values for AM64 GPEVM ? Since board is based on GPEVM, I would like to boot with settings for GPEVM. I tried to set the board name to "AM64-GPEVM" in the u-boot/board/ti/common/board_detect.c, but it seems like we need more than just the board name for this to take place.
//strlcpy(ep->name, am_ep.name, TI_EEPROM_HDR_NAME_LEN + 1);
strlcpy(ep->name, "AM64-GPEVM", TI_EEPROM_HDR_NAME_LEN + 1);
2. Could you share the data and storage address so that I can try programming the EEPROM with this data.
First option is preferred as it would free my EEPROM for other data storage. Any help is appreciated
