This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

split the embedded image into two parts using arm compiler

I am working on image splitting. I want to divide my main embedded image into two-part(core image and application image).

how can we split embedded images into two-part? after the split, it should work on the device. 

anyone can suggest documentation or tutorial to learn.

Parents
  • If I understand correctly, you wish to make two separate binary files? The method I would use is to create a scatter loading file with two LOAD regions, one for each binary, and locate the appropriate objects in each. This will produce a single executable (ELF) image, but then fromelf can be used on that to generate separate binaries.

    Is that what you wish to achieve, or something more complex?

Reply
  • If I understand correctly, you wish to make two separate binary files? The method I would use is to create a scatter loading file with two LOAD regions, one for each binary, and locate the appropriate objects in each. This will produce a single executable (ELF) image, but then fromelf can be used on that to generate separate binaries.

    Is that what you wish to achieve, or something more complex?

Children