Re: [U-Boot] [U-boot] Does u-boot.bin only include a data section?

2014-07-03 Thread Simon Glass
Hi,

On 22 June 2014 20:31,  tiger...@via-alliance.com wrote:
 Hi, experts:

 I am studying u-boo.bin format(which is got from u-boot, an ELF format
 bin).

 I run the below command:

 Objdump -h -b binary -m arm u-boot.bin



 Found only a .data section was displayed.

 So , does u-boot.bin include only a .data section?

u-boot.bin does not really include sections - it is just a binary
file, not ELF format. It includes data from the .text, .data. and
.rodata sections among others. You are telling objdump that it is an
ARM binary file and asking it to print a list of sections. I suspect
it creates a .data section just for fun - there aren't really any
sections in the file. Of course if you examine the file you will see
the contents of .text, .data, .rodata etc. from the original ELF
format file, but the header information that distinguishes them is not
present in u-boot.bin.

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [U-boot] Does u-boot.bin only include a data section?

2014-06-22 Thread TigerLiu
Hi, experts:

I am studying u-boo.bin format(which is got from u-boot, an ELF format
bin).

I run the below command:

Objdump -h -b binary -m arm u-boot.bin

 

Found only a .data section was displayed.

So , does u-boot.bin include only a .data section?

 

Best wishes,

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot