2007-04-17 Joel Sherrill <joel@OARcorp.com>

* bootcard.c: RTEMS Workspace now defaults to not being zeroed. This
	significantly speeds up boot time on targets not requiring memory to
	be touched at boot time.
This commit is contained in:
Joel Sherrill
2007-04-17 15:58:40 +00:00
parent 2c7794b7a6
commit 004b7410e6
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2007-04-17 Joel Sherrill <joel@OARcorp.com>
* bootcard.c: RTEMS Workspace now defaults to not being zeroed. This
significantly speeds up boot time on targets not requiring memory to
be touched at boot time.
2007-04-02 Joel Sherrill <joel@OARcorp.com>
* dummy_printk_support.c: New file.

View File

@@ -93,7 +93,7 @@ int boot_card(int argc, char **argv, char **envp)
Cpu_table.predriver_hook = NULL;
Cpu_table.postdriver_hook = NULL;
Cpu_table.idle_task = NULL;
Cpu_table.do_zero_of_workspace = TRUE;
Cpu_table.do_zero_of_workspace = FALSE;
Cpu_table.interrupt_stack_size = RTEMS_MINIMUM_STACK_SIZE;
Cpu_table.extra_mpci_receive_server_stack = 0;
Cpu_table.stack_allocate_hook = NULL;