2009-03-29 Joel Sherrill <joel.sherrill@gmail.com>

* fileio/init.c: Change arguments to rtems_shell_init() to match
	new expectations.
This commit is contained in:
Joel Sherrill
2009-03-29 23:04:19 +00:00
parent 006eafe5ef
commit 06ac2e6f97
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2009-03-29 Joel Sherrill <joel.sherrill@gmail.com>
* fileio/init.c: Change arguments to rtems_shell_init() to match
new expectations.
2009-03-02 Joel Sherrill <joel.sherrill@OARcorp.com>
* cdtest/main.cc: Use printk() in global destructors since printf() no

View File

@@ -98,6 +98,7 @@ fstab_t fs_table[] = {
#ifdef USE_SHELL
#include <rtems/shell.h>
#include <rtems/login.h>
void writeFile(
const char *name,
@@ -191,10 +192,9 @@ void fileio_start_shell(void)
"/dev/console", /* devname */
false, /* forever */
true, /* wait */
true /* login */
rtems_shell_login_check /* login */
);
}
#endif /* USE_SHELL */
void fileio_print_free_heap(void)