Fixed main thread stack size

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4992 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2004-08-09 21:35:57 +00:00
parent 12bc9f0ca3
commit 099817514b

View file

@ -146,11 +146,11 @@ SECTIONS
/* TRICK ALERT! We want 0x2000 bytes of stack, but we set the section
size smaller, and allow the stack to grow into the .iram copy */
.stack ADDR(.data)+SIZEOF(.data) + SIZEOF(.iram):
.stack ADDR(.data) + SIZEOF(.data) + SIZEOF(.iram):
{
*(.stack)
_stackbegin = .;
. += 0x2000-SIZEOF(.iram);
_stackbegin = . - SIZEOF(.iram);
. += 0x2000 - SIZEOF(.iram);
_stackend = .;
} > DRAM