Hello!
I'm working on bareboard project for MPC8572DS board with MPC8572E processor. I have an elf file. This elf file is working through codewarrior tap. I need to launch my elf file from u-boot, but bootelf command in u-boot does not work. Where i can find u-boot with working bootelf command or what i need to launch my elf file from u-boot.
Thanks!
I belive that it is required to prepare the binary image and load it to the memory base address used by the ELF.
To run the code it is possible to use U-Boot "go <address>" command.
You have to recompile uboot with bootelf support (#define CONFIG_CMD_ELF). Also, check if your uboot version support this command.
Adrian