bsps/arm: Move abort stack

Move abort stack above the other exception stacks to use them just in
case.
This commit is contained in:
Sebastian Huber
2014-10-13 16:11:02 +02:00
parent a38ced2683
commit 2faaf4bd09

View File

@@ -296,10 +296,6 @@ SECTIONS {
. = ALIGN (bsp_stack_align);
bsp_stack_abt_begin = .;
. = . + bsp_stack_abt_size;
bsp_stack_abt_end = .;
bsp_stack_fiq_begin = .;
. = . + bsp_stack_fiq_size;
bsp_stack_fiq_end = .;
@@ -316,6 +312,10 @@ SECTIONS {
. = . + bsp_stack_und_size;
bsp_stack_und_end = .;
bsp_stack_abt_begin = .;
. = . + bsp_stack_abt_size;
bsp_stack_abt_end = .;
bsp_stack_main_begin = .;
. = . + bsp_stack_main_size;
bsp_stack_main_end = .;