How to extract only the raw contents of an ELF section?

后端 未结 4 476
说谎
说谎 2020-12-01 04:16

I\'ve tried the following, but the resulting file is still an ELF and not purely the section content.

$ objcopy --only-section=  &l         


        
4条回答
  •  离开以前
    2020-12-01 05:03

    Use the -O binary output format:

    objcopy -O binary --only-section=.text foobar.elf foobar.text
    

    Just verified with avr-objcopy and an AVR ELF image's .text section.

    Note that if, as Tim points out below, your section doesn't have the ALLOC flag, you may have to add --set-section-flags .text=alloc to be able to extract it.

提交回复
热议问题