rename _end to __bss_end__

Currently, _end is used for end of BSS section.  We want _end to mean
end of u-boot image, so we rename _end to __bss_end__ first.

Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
This commit is contained in:
Po-Yu Chuang
2011-03-01 22:59:59 +00:00
committed by Albert Aribaud
parent 55f7934d2b
commit 44c6e6591c
242 changed files with 263 additions and 263 deletions

View File

@ -90,6 +90,6 @@ SECTIONS
*(COMMON)
. = ALIGN(4);
}
_end = . ;
__bss_end__ = . ;
PROVIDE (end = .);
}

View File

@ -130,6 +130,6 @@ SECTIONS
*(.bss)
*(COMMON)
}
_end = . ;
__bss_end__ = . ;
PROVIDE (end = .);
}