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:
Joel Sherrill
2008-09-16 20:13:27 +00:00
parent 8f402bf880
commit 190003b184
5 changed files with 13 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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 = . ;

View File

@@ -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 = . ;

View File

@@ -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 = . ;