forked from Imagelibrary/rtems
2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/bsp.h, startup/bspstart.c: Remove unused BSP_INIT_STACK_SIZE now that the linkcmds accounts for the starting stack.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* include/bsp.h, startup/bspstart.c: Remove unused BSP_INIT_STACK_SIZE
|
||||
now that the linkcmds accounts for the starting stack.
|
||||
|
||||
2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* Makefile.am, include/bsp.h, startup/bspstart.c, startup/linkcmds: Use
|
||||
|
||||
@@ -88,11 +88,6 @@ extern void *end;
|
||||
extern int CLOCK_SPEED;
|
||||
extern int CPU_PPC_CLICKS_PER_MS;
|
||||
|
||||
/*
|
||||
* system init stack
|
||||
*/
|
||||
#define BSP_INIT_STACK_SIZE 0x1000
|
||||
|
||||
/*
|
||||
* Total RAM available
|
||||
*/
|
||||
|
||||
@@ -270,7 +270,7 @@ void bsp_start( void )
|
||||
/*
|
||||
* Initialize the interrupt related settings.
|
||||
*/
|
||||
intrStackStart = (uint32_t) __rtems_end + BSP_INIT_STACK_SIZE;
|
||||
intrStackStart = (uint32_t) __rtems_end;
|
||||
intrStackSize = rtems_configuration_get_interrupt_stack_size();
|
||||
|
||||
BSP_heap_start = intrStackStart + intrStackSize;
|
||||
|
||||
Reference in New Issue
Block a user