forked from Imagelibrary/rtems
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, clock/ckinit.c, startup/bspstart.c, startup/linkcmds: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. Remove unnecessary includes of rtems/libio.h and rtems/libcsupport.h.
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* Makefile.am, clock/ckinit.c, startup/bspstart.c, startup/linkcmds:
|
||||||
|
Add use of bsp_get_work_area() in its own file and rely on BSP
|
||||||
|
Framework to perform more initialization. Remove unnecessary includes
|
||||||
|
of rtems/libio.h and rtems/libcsupport.h.
|
||||||
|
|
||||||
2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* include/bsp.h: Review of all bsp_cleanup() implementations. In this
|
* include/bsp.h: Review of all bsp_cleanup() implementations. In this
|
||||||
|
|||||||
@@ -29,8 +29,7 @@ dist_project_lib_DATA += startup/linkcmds
|
|||||||
startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
|
startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
|
||||||
../../shared/bsppost.c ../../shared/bsppredriverhook.c \
|
../../shared/bsppost.c ../../shared/bsppredriverhook.c \
|
||||||
startup/bspstart.c ../../shared/bootcard.c \
|
startup/bspstart.c ../../shared/bootcard.c \
|
||||||
../../shared/bsppretaskinghook.c \
|
../../shared/bsppretaskinghook.c ../../m68k/shared/m68kbspgetworkarea.c \
|
||||||
../../m68k/shared/m68kbspgetworkarea.c \
|
|
||||||
../../shared/sbrk.c ../../m68k/shared/setvec.c
|
../../shared/sbrk.c ../../m68k/shared/setvec.c
|
||||||
gnatsupp_SOURCES = ../../shared/gnatinstallhandler.c
|
gnatsupp_SOURCES = ../../shared/gnatinstallhandler.c
|
||||||
clock_SOURCES = clock/ckinit.c
|
clock_SOURCES = clock/ckinit.c
|
||||||
|
|||||||
@@ -20,7 +20,6 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include <bsp.h>
|
#include <bsp.h>
|
||||||
#include <rtems/libio.h>
|
|
||||||
#include <rtems/zilog/z8036.h>
|
#include <rtems/zilog/z8036.h>
|
||||||
|
|
||||||
#define MICRVAL 0xe2 /* disable lower chain, no vec */
|
#define MICRVAL 0xe2 /* disable lower chain, no vec */
|
||||||
|
|||||||
@@ -14,11 +14,7 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#include <bsp.h>
|
#include <bsp.h>
|
||||||
#include <rtems/libio.h>
|
|
||||||
#include <rtems/libcsupport.h>
|
|
||||||
#include <rtems/zilog/z8036.h>
|
#include <rtems/zilog/z8036.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
*/
|
*/
|
||||||
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x0;
|
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x0;
|
||||||
_RamSize = DEFINED(_RamSize) ? _RamSize : 1M;
|
_RamSize = DEFINED(_RamSize) ? _RamSize : 1M;
|
||||||
_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x10000;
|
_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x0;
|
||||||
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000;
|
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000;
|
||||||
|
|
||||||
MEMORY
|
MEMORY
|
||||||
|
|||||||
Reference in New Issue
Block a user