mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-12 14:42:31 -05:00
Increase stack size to 32K on large memory devices (i.e. iRiver). CODEC stack usage needs to be investigated, and then this can possibly be reduced
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5959 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1ec83e2069
commit
b9ea50796d
1 changed files with 4 additions and 0 deletions
|
|
@ -186,7 +186,11 @@ SECTIONS
|
||||||
*(.stack)
|
*(.stack)
|
||||||
_stackbegin = . - SIZEOF(.iram);
|
_stackbegin = . - SIZEOF(.iram);
|
||||||
stackbegin = . - SIZEOF(.iram);
|
stackbegin = . - SIZEOF(.iram);
|
||||||
|
#if MEMORYSIZE >= 32
|
||||||
|
. += 0x8000 - SIZEOF(.iram);
|
||||||
|
#else
|
||||||
. += 0x2000 - SIZEOF(.iram);
|
. += 0x2000 - SIZEOF(.iram);
|
||||||
|
#endif
|
||||||
_stackend = .;
|
_stackend = .;
|
||||||
stackend = .;
|
stackend = .;
|
||||||
} > DRAM
|
} > DRAM
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue