2008-05-12 Joel Sherrill <joel.sherrill@OARcorp.com>

* spfatal/fatal.c, spfatal06/testcase.h, spfatal07/testcase.h,
	spfatal08/testcase.h, spfatal09/testcase.h, spfatal10/testcase.h:
	Refactored and renamed initialization routines to
	rtems_initialize_data_structures, rtems_initialize_before_drivers,
	rtems_initialize_device_drivers, and
	rtems_initialize_start_multitasking. This opened the sequence up so
	that bootcard() could provide a more robust and flexible framework
	which is easier to explain and understand. This also lays the
	groundwork for sharing the division of available memory between the
	RTEMS workspace and heap and the C library initialization across all
	BSPs.
This commit is contained in:
Joel Sherrill
2008-05-12 18:44:30 +00:00
parent 3820ff24b8
commit c199cf899b
7 changed files with 21 additions and 8 deletions

View File

@@ -35,7 +35,7 @@ void force_error()
New_Configuration = *_Configuration_Table;
New_Configuration.interrupt_stack_size = (STACK_MINIMUM_SIZE-1);
rtems_initialize_executive_early( &New_Configuration );
rtems_initialize_data_structures( &New_Configuration );
/* we will not run this far */
}