aboutsummaryrefslogtreecommitdiff
path: root/skiboot.lds.S
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-05-21 11:44:23 +1000
committerStewart Smith <stewart@linux.ibm.com>2019-05-21 12:46:28 +1000
commit7c9b3eb3c149843a27b9674e66b0227cf289a29a (patch)
treef31e01bce51847da804e99b8c110204f9e5e7b29 /skiboot.lds.S
parentec52b670ddf57eb6d707c164aba2f01baf2d457b (diff)
downloadskiboot-7c9b3eb3c149843a27b9674e66b0227cf289a29a.zip
skiboot-7c9b3eb3c149843a27b9674e66b0227cf289a29a.tar.gz
skiboot-7c9b3eb3c149843a27b9674e66b0227cf289a29a.tar.bz2
With new GCC comes larger GCOV binaries
So we need to change our heap size to make more room for data/bss without having to change where the console is or have more fun moving things about. Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'skiboot.lds.S')
-rw-r--r--skiboot.lds.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/skiboot.lds.S b/skiboot.lds.S
index 18e89f3..4a7727d 100644
--- a/skiboot.lds.S
+++ b/skiboot.lds.S
@@ -117,7 +117,7 @@ SECTIONS
KEEP(*(.init_array))
__ctors_end = .;
}
-
+
. = ALIGN(0x10);
.opd : {
*(.opd)
@@ -201,8 +201,8 @@ SECTIONS
*(.branch_lt)
}
- /* We locate the BSS at 3M to leave room for the symbol map */
- . = 0x300000;
+ /* We locate the BSS at 4M to leave room for the symbol map */
+ . = 0x400000;
_sbss = .;
.bss : {