2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>

* bootcard.c: Perform bsp_start() before bsp_get_work_area().
This commit is contained in:
Joel Sherrill
2008-09-18 20:48:17 +00:00
parent 1d18c33202
commit 4e1cc1739b
2 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* bootcard.c: Perform bsp_start() before bsp_get_work_area().
2008-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* bootcard.c: Add support for optionally having a unified work area. In

View File

@@ -165,6 +165,11 @@ int boot_card(
else
rtems_progname = "RTEMS";
/*
* Invoke Board Support Package initialization routine written in C.
*/
bsp_start();
/*
* Find out where the block of memory the BSP will use for
* the RTEMS Workspace and the C Program Heap is.
@@ -198,11 +203,6 @@ int boot_card(
}
#endif
/*
* Invoke Board Support Package initialization routine written in C.
*/
bsp_start();
/*
* Initialize RTEMS data structures
*/