I have 2 separate projects: bootloader and application.
While building bootloader project I've added the following line in post-build steps in Eclipse: arm-none-eabi-objcopy -S -O binary "${ProjName}.elf" "${ProjName}.bin", so *.bin file was created.
Now, in the application project, I'd like to add this *.bin at specified addresses in order to produce one *.hex/*elf file.
Can arm-none-eabi-objcopy be used for this purpose? Or is there linker command that could combine existing *.bin file from bootloader project and *.o files from application project during linking?