diff options
Diffstat (limited to 'os/various/shell/shell.c')
-rw-r--r-- | os/various/shell/shell.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/os/various/shell/shell.c b/os/various/shell/shell.c index a0998fbbe..269ba1818 100644 --- a/os/various/shell/shell.c +++ b/os/various/shell/shell.c @@ -156,19 +156,12 @@ THD_FUNCTION(shellThread, p) { }
args[n] = NULL;
if (cmd != NULL) {
- if (strcmp(cmd, "exit") == 0) {
- if (n > 0) {
- usage(chp, "exit");
- continue;
- }
- break;
- }
- else if (strcmp(cmd, "help") == 0) {
+ if (strcmp(cmd, "help") == 0) {
if (n > 0) {
usage(chp, "help");
continue;
}
- chprintf(chp, "Commands: help exit ");
+ chprintf(chp, "Commands: help ");
list_commands(chp, shell_local_commands);
if (scp != NULL)
list_commands(chp, scp);
|