This reverts commit
3b010ab774413480a4fb98ff42db3b7a1d697a62
because it cannot boot from u-boot.
Change-Id: I1fdbdf83838629fbc21c03f8fec42c60e4260b8f
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
* __bss_base and __bss_limit are for linker only (overlay ordering)
*/
- .bss_start __rel_dyn_start (OVERLAY) : {
+ .bss_start : {
KEEP(*(.__bss_start));
- __bss_base = .;
}
- .bss __bss_base (OVERLAY) : {
+ .bss : {
*(.bss*)
. = ALIGN(4);
- __bss_limit = .;
}
- .bss_end __bss_limit (OVERLAY) : {
+ .bss_end : {
KEEP(*(.__bss_end));
}