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

* startup/init52235.c: Update for boot_card command line change.
This commit is contained in:
Chris Johns
2009-04-28 06:27:15 +00:00
parent 010e93365a
commit bcd1228d90
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2009-04-28 Chris Johns <chrisj@rtems.org>
* startup/init52235.c: Update for boot_card command line change.
2009-04-28 Chris Johns <chrisj@rtems.org>
* startup/linkcmds: Add .data.* for the C++ test.

View File

@@ -8,7 +8,7 @@
extern void _wr_vbr(uint32_t);
extern void init_main(void);
extern int boot_card(int, char **, char **);
extern int boot_card(const char *);
/*
* From linkcmds
@@ -76,6 +76,6 @@ void Init52235(void)
* We have to call some kind of RTEMS function here!
*/
boot_card(0, 0, 0);
boot_card(0);
for (;;) ;
}
}