Fix uninitialized variable problem for l0dables.

This commit is contained in:
Stefan `Sec` Zehl 2011-08-22 21:49:38 +02:00
parent 302734fa55
commit d46df57ea1
1 changed files with 2 additions and 9 deletions

View File

@ -30,19 +30,12 @@ SECTIONS
*(vtable)
*(.data*)
_edata = .;
} > sram
/* zero initialized data */
.bss :
{
_bss = .;
/* force zero initialized data to be present*/
*(.bss*)
*(COMMON)
_ebss = .;
} > sram
end = .;
/* For GDB compatibility we decrease the top with 16 bytes */
stack_entry = sram_top - 16;
}