summaryrefslogtreecommitdiffstats
path: root/arch/mips/cpu/u-boot.lds
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/cpu/u-boot.lds')
-rw-r--r--arch/mips/cpu/u-boot.lds11
1 files changed, 6 insertions, 5 deletions
diff --git a/arch/mips/cpu/u-boot.lds b/arch/mips/cpu/u-boot.lds
index 58a49b2137..6980b86b9f 100644
--- a/arch/mips/cpu/u-boot.lds
+++ b/arch/mips/cpu/u-boot.lds
@@ -70,13 +70,14 @@ SECTIONS
uboot_end_data = .;
. = ALIGN(4);
- .sbss : {
- *(.sbss*)
- }
-
.bss : {
- *(.bss*)
+ __bss_start = .;
+ *(.sbss.*)
+ *(.bss.*)
+ *(COMMON)
. = ALIGN(4);
+ __bss_end = .;
}
+
uboot_end = .;
}
OpenPOWER on IntegriCloud