2009-04-28 Chris Johns <chrisj@rtems.org>

* startup/cpuboot.c: Update for boot_card command line change.
This commit is contained in:
Chris Johns
2009-04-28 06:28:20 +00:00
parent 90819e8010
commit 6d3245b623
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2009-04-28 Chris Johns <chrisj@rtems.org>
* startup/cpuboot.c: Update for boot_card command line change.
2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* bsp_specs: Move -e start from *link to *startfile to avoid warning

View File

@@ -119,7 +119,7 @@ void boot_phase_2(void)
static constructors have not been called, and RTEMS is not initialised.
*/
void boot_card(void);
void boot_card(const char* cmdline);
void set_debug_traps(void);
void breakpoint(void);
@@ -136,7 +136,7 @@ void boot_phase_3(void)
/* FIXME : add RAM and ROM checks */
/* boot the bsp, what ever this means */
boot_card();
boot_card((void*)0);
WATCHDOG_TRIGGER();
}