mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-02 21:55:44 +00:00
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, startup/linkcmds, startup/linkcmdsflash: Use top level shared bsp_get_work_area() implementation.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* Makefile.am, startup/linkcmds, startup/linkcmdsflash: Use top level
|
||||
shared bsp_get_work_area() implementation.
|
||||
|
||||
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* Makefile.am, configure.ac, startup/bspstart.c: Add use of
|
||||
|
||||
@@ -27,7 +27,7 @@ dist_project_lib_DATA += startup/linkcmds startup/linkcmdsflash
|
||||
|
||||
startup_SOURCES = startup/bspclean.c ../../shared/bsppredriverhook.c \
|
||||
../../shared/bsplibc.c ../../shared/bsppost.c \
|
||||
../../shared/bsppretaskinghook.c ../../m68k/shared/m68kbspgetworkarea.c \
|
||||
../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
|
||||
startup/init5329.c startup/bspstart.c startup/cfinit.c\
|
||||
../../shared/bootcard.c \
|
||||
../../shared/sbrk.c ../../m68k/shared/setvec.c \
|
||||
|
||||
@@ -15,16 +15,16 @@
|
||||
/*
|
||||
* Declare some sizes.
|
||||
*/
|
||||
_CoreSRamBase = DEFINED(_RamBase) ? _RamBase : 0x80000000;
|
||||
_CoreSRamSize = DEFINED(_RamSize) ? _RamSize : 32K;
|
||||
_CoreSRamBase = DEFINED(RamBase) ? RamBase : 0x80000000;
|
||||
_CoreSRamSize = DEFINED(RamSize) ? RamSize : 32K;
|
||||
|
||||
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x40000000;
|
||||
_RamSize = DEFINED(_RamSize) ? _RamSize : 32M;
|
||||
RamBase = DEFINED(RamBase) ? RamBase : 0x40000000;
|
||||
RamSize = DEFINED(RamSize) ? RamSize : 32M;
|
||||
|
||||
_BootFlashBase = DEFINED(_FlashBase) ? _FlashBase : 0x00000000;
|
||||
_BootFlashSize = DEFINED(_FlashBase) ? _FlashBase : 2M;
|
||||
|
||||
_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0;
|
||||
HeapSize = DEFINED(HeapSize) ? HeapSize : 0;
|
||||
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x400;
|
||||
|
||||
_VBR = 0x40000000;
|
||||
@@ -160,7 +160,7 @@ SECTIONS
|
||||
PROVIDE (_end = .);
|
||||
|
||||
_clear_end = .;
|
||||
_WorkspaceBase = .;
|
||||
WorkAreaBase = .;
|
||||
} > dram
|
||||
|
||||
.start_stack :
|
||||
|
||||
@@ -15,16 +15,16 @@
|
||||
/*
|
||||
* Declare some sizes.
|
||||
*/
|
||||
_CoreSRamBase = DEFINED(_RamBase) ? _RamBase : 0x80000000;
|
||||
_CoreSRamSize = DEFINED(_RamSize) ? _RamSize : 32K;
|
||||
_CoreSRamBase = DEFINED(RamBase) ? RamBase : 0x80000000;
|
||||
_CoreSRamSize = DEFINED(RamSize) ? RamSize : 32K;
|
||||
|
||||
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x40000000;
|
||||
_RamSize = DEFINED(_RamSize) ? _RamSize : 32M;
|
||||
RamBase = DEFINED(RamBase) ? RamBase : 0x40000000;
|
||||
RamSize = DEFINED(RamSize) ? RamSize : 32M;
|
||||
|
||||
_BootFlashBase = DEFINED(_FlashBase) ? _FlashBase : 0x00000000;
|
||||
_BootFlashSize = DEFINED(_FlashBase) ? _FlashBase : 2M;
|
||||
|
||||
_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0;
|
||||
HeapSize = DEFINED(HeapSize) ? HeapSize : 0;
|
||||
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x400;
|
||||
|
||||
_VBR = 0x40000000;
|
||||
@@ -156,7 +156,7 @@ SECTIONS
|
||||
PROVIDE (_end = .);
|
||||
|
||||
_clear_end = .;
|
||||
_WorkspaceBase = .;
|
||||
WorkAreaBase = .;
|
||||
} > dram
|
||||
|
||||
.start_stack :
|
||||
|
||||
Reference in New Issue
Block a user