mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-28 06:04:19 +01:00
Increased mini's irq stack size.
The new sd driver requires this, I can reproduce a panic easily here. This is hopefully temporarily, maybe we can push this requirement down a little.
This commit is contained in:
parent
4dcef26df8
commit
eb81f81507
2
mini.ld
2
mini.ld
@ -5,7 +5,7 @@ EXTERN(__ipc_info)
|
|||||||
ENTRY(_start)
|
ENTRY(_start)
|
||||||
|
|
||||||
__stack_size = 0x800;
|
__stack_size = 0x800;
|
||||||
__irqstack_size = 0x200; /* blame the bsd's sdhc_intr function */
|
__irqstack_size = 0x400; /* blame the bsd's sdhc_intr function */
|
||||||
__excstack_size = 0x100;
|
__excstack_size = 0x100;
|
||||||
|
|
||||||
MEMORY {
|
MEMORY {
|
||||||
|
Loading…
Reference in New Issue
Block a user