summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/lib/libbsp/shared/ChangeLog9
-rw-r--r--c/src/lib/libbsp/shared/bootcard.c8
2 files changed, 9 insertions, 8 deletions
diff --git a/c/src/lib/libbsp/shared/ChangeLog b/c/src/lib/libbsp/shared/ChangeLog
index cd066ae35d..c06a1df846 100644
--- a/c/src/lib/libbsp/shared/ChangeLog
+++ b/c/src/lib/libbsp/shared/ChangeLog
@@ -1,3 +1,12 @@
+2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * bootcard.c: Moved most of the remaining CPU Table fields to the
+ Configuration Table. This included pretasking_hook, predriver_hook,
+ postdriver_hook, idle_task, do_zero_of_workspace,
+ extra_mpci_receive_server_stack, stack_allocate_hook, and
+ stack_free_hook. As a side-effect of this effort some multiprocessing
+ code was made conditional and some style clean up occurred.
+
2007-12-02 Till Straumann <strauman@slac.stanford.edu>
* vmeUniverse/vmeUniverse.c, vmeUniverse/vmeTsi148.c:
diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c
index 339dba4acf..5685cbaffd 100644
--- a/c/src/lib/libbsp/shared/bootcard.c
+++ b/c/src/lib/libbsp/shared/bootcard.c
@@ -80,15 +80,7 @@ int boot_card(int argc, char **argv, char **envp)
* right most of the time.
*/
- Cpu_table.pretasking_hook = NULL;
- Cpu_table.predriver_hook = NULL;
- Cpu_table.postdriver_hook = NULL;
- Cpu_table.idle_task = NULL;
- 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;
- Cpu_table.stack_free_hook = NULL;
/*
* Copy the configuration table so we and the BSP wants to change it.