在线时间8 小时
UID2117966
注册时间2014-9-19
NXP金币0
该用户从未签到
注册会员

- 积分
- 78
- 最后登录
- 2018-7-11
|
一般来说uboot里面的连接脚本只规定了代码段,数据段和bss段的存储位置,请问__hab_data代表什么特殊的意义呢?,部分脚本如下:
/* Extend to align to 0x1000, then put the Hab Data */
. = ALIGN(0x1000);
__hab_data = .;
. = . + 0x2000;
__data_enc_key = .;
/* actually, only 64bytes are needed, but this generates
a size multiple of 512bytes, which is optimal for SD boot */
. = . + 0x200;
__hab_data_end = .;
/* End of Hab Data, Place it before BSS section */
坐等回帖!!
|
|