哥最近在看u-boot,有些问题不是很了解,如下:
_TEXT_BASE:
.word TEXT_BASE
.globl _armboot_start
_armboot_start:
.word _start
/*
* These are defined in the board-specific linker script.
*/
.globl _bss_start
_bss_start:
.word __bss_start
.globl _bss_end
_bss_end:
.word _end
看到在别的地方说到:
//__bss_start是uboot 的bss段起始地址,那么uboot映像的大小就是__bss_start - _start;
//实际上,_armboot_start并没有实际意义,它只是在"ldr r2, _armboot_start"中用來寻
//址_start的值而已,_bss_start也是一样的道理,真正有意义的应该是_start和
//__bss_start本身。
.globl _bss_start /*__bss_start是uboot 的bss段起始地址,*/
_bss_start: /*uboot映像的大小就是__bss_start - _start*/
这里哥有疑问了,为什么uboot映像的大小就是__bss_start - _start?如何定义的? |