Hi, All,
I want to use the elf "vmlinux" to get a vhx hex file. I used below command:
fromELF --vhx vmlinux --output vmlinux.hex
Then I got a folder "vmlinux.hex", and two files in the folder.
But I want to get one hex file, because I don't know how to load the two hex file into memory mode.
Could you give any suggestion for this problem?
Regards, Ke
Hi Ke, multiple files will be created if there are multiple load regions defined in the elf file, as documented herehttps://developer.arm.com/docs/100071/0609/fromelf-command-line-options/-vhxDoes the output need to be VHX format? There are --bincombined and --m32combined options which will merge the load regions to a single output fiile with padding between them. Unfortunately there is no equivalent --vhxcombined option.developer.arm.com/.../-bincombineddeveloper.arm.com/.../-m32combinedRonan