summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-08-09 21:35:57 +0000
committerJens Arnold <amiconn@rockbox.org>2004-08-09 21:35:57 +0000
commit099817514b021c57395935ea187d921ba26b3e5f (patch)
tree7ffde8640e7eea653aeca86bb74809c11404e115
parent12bc9f0ca3e6313c1f1f5cc81c5ba3fc59b087a1 (diff)
downloadrockbox-099817514b021c57395935ea187d921ba26b3e5f.tar.gz
rockbox-099817514b021c57395935ea187d921ba26b3e5f.zip
Fixed main thread stack size
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4992 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/app.lds6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/app.lds b/firmware/app.lds
index 015ed70bd8..a2cefe1091 100644
--- a/firmware/app.lds
+++ b/firmware/app.lds
@@ -146,11 +146,11 @@ SECTIONS
146 146
147 /* TRICK ALERT! We want 0x2000 bytes of stack, but we set the section 147 /* TRICK ALERT! We want 0x2000 bytes of stack, but we set the section
148 size smaller, and allow the stack to grow into the .iram copy */ 148 size smaller, and allow the stack to grow into the .iram copy */
149 .stack ADDR(.data)+SIZEOF(.data) + SIZEOF(.iram): 149 .stack ADDR(.data) + SIZEOF(.data) + SIZEOF(.iram):
150 { 150 {
151 *(.stack) 151 *(.stack)
152 _stackbegin = .; 152 _stackbegin = . - SIZEOF(.iram);
153 . += 0x2000-SIZEOF(.iram); 153 . += 0x2000 - SIZEOF(.iram);
154 _stackend = .; 154 _stackend = .;
155 } > DRAM 155 } > DRAM
156 156