Hi,
I have a good .elf software (let's call it soft.elf) for a microblaze running a Gibagee board. I want to store this software in the SPI W25Q64BV flash at offset 0x400000, and develop my own bootloder to load this software from SPI Flash into DDR3 at each start up of the board.
I have take a look at all the scripts given in the TE-Reference design, but i am bit lost....
What is the command to generate soft.mcs from soft.lef at offset 0x400000 with the same boot data header that the one provided in the reference design :
typedef struct tagBOOTDATAHEADER {
unsigned int size;
unsigned int boot_jump;
unsigned short crc16;
unsigned char vectors[40];
} BOOTDATAHEADER;
Thanks for helping.