Changeset 508f319e in rtems


Ignore:
Timestamp:
11/16/18 06:43:51 (5 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
a74ee417
Parents:
84e59b7c
git-author:
Sebastian Huber <sebastian.huber@…> (11/16/18 06:43:51)
git-committer:
Sebastian Huber <sebastian.huber@…> (11/19/18 06:15:47)
Message:

bsps/mips: Use interrupt stack for init stack

Update #3459.

Location:
bsps/mips
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • bsps/mips/hurricane/start/start.S

    r84e59b7c r508f319e  
    294294
    295295        move    a0,zero         /* Set command line passed to main */
     296        la      sp,_ISR_Stack_area_end # Use configuration defined stack
     297        subu    sp,sp,32
    296298        jal     boot_card
    297299        nop
  • bsps/mips/rbtx4925/start/start.S

    r84e59b7c r508f319e  
    318318*/
    319319        move    a0,zero         /* Set argc passed to main */
     320        la      sp,_ISR_Stack_area_end # Use configuration defined stack
     321        subu    sp,sp,32
    320322        jal     boot_card
    321323        nop
  • bsps/mips/rbtx4938/start/start.S

    r84e59b7c r508f319e  
    317317*/
    318318        move    a0,zero         /* Set command line passed to boot_card */
     319        la      sp,_ISR_Stack_area_end # Use configuration defined stack
     320        subu    sp,sp,32
    319321        jal     boot_card
    320322        nop
Note: See TracChangeset for help on using the changeset viewer.