mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-30 11:01:33 +00:00
MIPS: compute num_got_entries from .got section's size
The '__got_start' and '__got_end' symbols are used only in the linker script to compute the value of the 'num_got_entries' symbol. Remove the symbols and use the SIZEOF(.got) command to get the size of the .got section. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
This commit is contained in:
parent
8b1c7345c6
commit
45397816b2
1 changed files with 2 additions and 4 deletions
|
@ -52,11 +52,11 @@ SECTIONS
|
||||||
_gp = ALIGN(16) + 0x7ff0;
|
_gp = ALIGN(16) + 0x7ff0;
|
||||||
|
|
||||||
.got : {
|
.got : {
|
||||||
__got_start = .;
|
|
||||||
*(.got)
|
*(.got)
|
||||||
__got_end = .;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
num_got_entries = SIZEOF(.got) >> PTR_COUNT_SHIFT;
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.sdata : {
|
.sdata : {
|
||||||
*(.sdata*)
|
*(.sdata*)
|
||||||
|
@ -69,8 +69,6 @@ SECTIONS
|
||||||
|
|
||||||
uboot_end_data = .;
|
uboot_end_data = .;
|
||||||
|
|
||||||
num_got_entries = (__got_end - __got_start) >> PTR_COUNT_SHIFT;
|
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.sbss : {
|
.sbss : {
|
||||||
*(.sbss*)
|
*(.sbss*)
|
||||||
|
|
Loading…
Add table
Reference in a new issue