diff --git a/apps/shell/shell-coffee.c b/apps/shell/shell-coffee.c index 5655bbb7b..3a09b3bf5 100644 --- a/apps/shell/shell-coffee.c +++ b/apps/shell/shell-coffee.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: shell-coffee.c,v 1.1 2008/07/03 17:56:17 adamdunkels Exp $ + * $Id: shell-coffee.c,v 1.2 2008/07/03 21:13:13 adamdunkels Exp $ */ /** @@ -71,7 +71,7 @@ PROCESS_THREAD(shell_format_process, ev, data) if(input->len1 > 0 && (input->data1[0] == 'y' || input->data1[0] == 'Y')) { - shell_output_str(&format_command, "format: formatting file system", ""); + shell_output_str(&format_command, "format: formatting file system, please wait...", ""); if(cfs_coffee_format() == 0) { shell_output_str(&format_command, "format: formatting complete", ""); } else { diff --git a/apps/shell/shell-exec.c b/apps/shell/shell-exec.c index 8f73c5e92..20f8f51f3 100644 --- a/apps/shell/shell-exec.c +++ b/apps/shell/shell-exec.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: shell-exec.c,v 1.1 2008/02/04 23:42:17 adamdunkels Exp $ + * $Id: shell-exec.c,v 1.2 2008/07/03 21:13:13 adamdunkels Exp $ */ /** @@ -49,7 +49,7 @@ PROCESS(shell_exec_process, "exec"); SHELL_COMMAND(exec_command, "exec", - "exec: load and execute an ELF file", + "exec : load and execute the ELF file filename", &shell_exec_process); /*---------------------------------------------------------------------------*/ PROCESS_THREAD(shell_exec_process, ev, data)