summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Sparmann <theseven@rockbox.org>2010-02-17 16:31:19 +0000
committerMichael Sparmann <theseven@rockbox.org>2010-02-17 16:31:19 +0000
commit9ba7cff6c1798370e0dcb8f785b1ddf8e960500f (patch)
tree13dfdcec631db46dedbc9dbc5334df7087de473b
parent04ea85fb8897d3981ef687bbb970d31a110f82d8 (diff)
downloadrockbox-9ba7cff6c1798370e0dcb8f785b1ddf8e960500f.tar.gz
rockbox-9ba7cff6c1798370e0dcb8f785b1ddf8e960500f.zip
Reduce Nano2G main thread stack size to the default value again. The huge sector buffers of the FTL have been moved to the bss some time ago, so this isn't needed any more.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24725 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/s5l8700/app.lds5
1 files changed, 1 insertions, 4 deletions
diff --git a/firmware/target/arm/s5l8700/app.lds b/firmware/target/arm/s5l8700/app.lds
index e431ee1fd7..cc72ebba03 100644
--- a/firmware/target/arm/s5l8700/app.lds
+++ b/firmware/target/arm/s5l8700/app.lds
@@ -28,7 +28,7 @@ STARTUP(target/arm/s5l8700/crt0.o)
#define DRAMSIZE (DRAM_SIZE - STUBOFFSET - PLUGINSIZE - CODECSIZE)
#define CODECORIG (ENDAUDIOADDR)
#if CONFIG_CPU==S5L8700
-#define IRAMSIZE (64*1024) /* 128KB total - 64KB for core, 64KB for plugins */
+#define IRAMSIZE (128*1024) /* 256KB total - 128KB for core, 128KB for plugins */
#else /* S5L8701 */
#define IRAMSIZE (96*1024) /* 176KB total - 96KB for core, 80KB for plugins */
#endif
@@ -107,9 +107,6 @@ SECTIONS
*(.stack)
stackbegin = .;
_stackbegin = .;
-#ifdef IPOD_NANO2G
- . += 0x4000;
-#endif
. += 0x2000;
stackend = .;
_stackend = .;