forked from Imagelibrary/rtems
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Use top level shared bsp_get_work_area() implementation.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* Makefile.am, startup/linkcmds, startup/linkcmds-le,
|
||||
startup/linkcmds-le.coff: Use top level shared bsp_get_work_area()
|
||||
implementation.
|
||||
|
||||
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* clock/ckinit.c: Add use of bsp_get_work_area() in its own file and
|
||||
|
||||
@@ -35,7 +35,7 @@ dist_project_lib_DATA += startup/linkcmds startup/linkcmds-le \
|
||||
|
||||
startup_SOURCES = startup/hw_init.c ../../shared/bsplibc.c \
|
||||
../../shared/bsppost.c ../../shared/bsppredriverhook.c \
|
||||
../../shared/bsppretaskinghook.c ../shared/bspgetworkarea.c \
|
||||
../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
|
||||
../shared/bspstart.c ../../shared/bspclean.c ../../shared/sbrk.c \
|
||||
../../shared/bootcard.c ../../shared/gnatinstallhandler.c \
|
||||
../shared/bsphwinit.c
|
||||
|
||||
@@ -29,6 +29,7 @@ ENTRY(_start)
|
||||
|
||||
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x00000000;
|
||||
_RamSize = DEFINED(_RamSize) ? _RamSize : 0x01000000;
|
||||
_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x0;
|
||||
|
||||
MEMORY
|
||||
{
|
||||
@@ -160,7 +161,7 @@ SECTIONS
|
||||
}
|
||||
|
||||
. = ALIGN(16);
|
||||
_WorkSpaceStart = . ;
|
||||
_WorkAreaBase = . ;
|
||||
|
||||
. = ALIGN(16);
|
||||
_CPU_Interrupt_stack_low = . ;
|
||||
|
||||
@@ -10,6 +10,7 @@ ENTRY(_start)
|
||||
|
||||
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x00000000;
|
||||
_RamSize = DEFINED(_RamSize) ? _RamSize : 0x01000000;
|
||||
_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x0;
|
||||
|
||||
MEMORY
|
||||
{
|
||||
@@ -200,7 +201,7 @@ SECTIONS
|
||||
}
|
||||
|
||||
. = ALIGN(16);
|
||||
_WorkSpaceStart = . ;
|
||||
_WorkAreaBase = . ;
|
||||
|
||||
. = ALIGN(16);
|
||||
_CPU_Interrupt_stack_low = . ;
|
||||
|
||||
@@ -28,6 +28,7 @@ ENTRY(_start)
|
||||
|
||||
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x00000000;
|
||||
_RamSize = DEFINED(_RamSize) ? _RamSize : 0x01000000;
|
||||
_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x0;
|
||||
|
||||
MEMORY
|
||||
{
|
||||
@@ -158,7 +159,7 @@ SECTIONS
|
||||
. = . + 4096;
|
||||
}
|
||||
. = ALIGN(16);
|
||||
_WorkSpaceStart = . ;
|
||||
_WorkAreaBase = . ;
|
||||
|
||||
. = ALIGN(16);
|
||||
_CPU_Interrupt_stack_low = . ;
|
||||
|
||||
Reference in New Issue
Block a user