diff options
author | wdenk <wdenk> | 2004-04-12 16:12:49 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-04-12 16:12:49 +0000 |
commit | d716b126718d874f52ffb694e6c22b7235cec483 (patch) | |
tree | 621a24955203ad5c221a3049fee60048e74b556e /examples/mips.lds | |
parent | 56b86bf0cd6ce45d337154c133ab361120ee5569 (diff) | |
download | u-boot-imx-d716b126718d874f52ffb694e6c22b7235cec483.zip u-boot-imx-d716b126718d874f52ffb694e6c22b7235cec483.tar.gz u-boot-imx-d716b126718d874f52ffb694e6c22b7235cec483.tar.bz2 |
Add startup code to clear the BSS of standalone applications
Diffstat (limited to 'examples/mips.lds')
-rw-r--r-- | examples/mips.lds | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/mips.lds b/examples/mips.lds index 8ed01c4..9d9849b 100644 --- a/examples/mips.lds +++ b/examples/mips.lds @@ -51,6 +51,9 @@ SECTIONS .sdata : { *(.sdata) } . = ALIGN(4); + __bss_start = .; .sbss : { *(.sbss) } .bss : { *(.bss) } + + _end = .; } |