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:
parent
12bc9f0ca3
commit
099817514b
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue