summaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorAntony Pavlov <antonynpavlov@gmail.com>2011-12-06 14:17:11 +0400
committerSascha Hauer <s.hauer@pengutronix.de>2011-12-07 09:52:28 +0100
commitc0213869a272fe8e001321940fbd317dce0e588c (patch)
tree134e4e00fdcda5476d6d249d13bbb76c0387bfdb /arch/mips
parent019e55f4f7b94b2178d65c17a7386277c799993f (diff)
downloadbarebox-c0213869a272fe8e001321940fbd317dce0e588c.tar.gz
barebox-c0213869a272fe8e001321940fbd317dce0e588c.tar.xz
MIPS: provide __bss_stop in linker script
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/lib/barebox.lds.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/lib/barebox.lds.S b/arch/mips/lib/barebox.lds.S
index ba4c0afc11..0c57368c24 100644
--- a/arch/mips/lib/barebox.lds.S
+++ b/arch/mips/lib/barebox.lds.S
@@ -67,6 +67,6 @@ SECTIONS
. = ALIGN(4);
__bss_start = .;
.bss : { *(.bss*) }
- __bss_end = .;
+ __bss_stop = .;
_end = .;
}