From 524016ca3a096627f84958d131b3a07784ed505a Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 10 Apr 2016 12:01:22 +0000 Subject: Shell exit fix. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9274 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/various/shell/shell.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'os/various') 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); -- cgit v1.2.3