summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-18 09:39:16 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-18 09:39:16 -0600
commitc9e72e0eed21a1c8c679bc094b0960dabf31c84d (patch)
tree9ef30c27fc3d15efa8db04cb1112d916316f3998 /apps/ChangeLog.txt
parent1cc717520d36623c08f8b60f9cd7fede1bd8f1c1 (diff)
downloadnuttx-c9e72e0eed21a1c8c679bc094b0960dabf31c84d.tar.gz
nuttx-c9e72e0eed21a1c8c679bc094b0960dabf31c84d.tar.bz2
nuttx-c9e72e0eed21a1c8c679bc094b0960dabf31c84d.zip
NSH: Add a break command; if-then-else and looping behavior can not be configured out of the build for small systems that need minimal scripting capability
Diffstat (limited to 'apps/ChangeLog.txt')
-rw-r--r--apps/ChangeLog.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index fb3bf2979..a5204eab9 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -796,4 +796,9 @@
a command to be on the same line as the then and else tokens like:
"if true; then echo true; else echo false; fi". Much more like bash!
(2014-1-17).
-
+ * apps/nshlib/Kconfig, README.txt, nsh.h, nsh_command.c, and
+ nsh_script.c: Add an option to conditionally compile out support for
+ loop and for if-then-else-fi sequence (2014-1-17).
+ * apps/nshlib/nsh.h, nsh_command.c, and nsh_parse.c: Add a break
+ command that can be executed with a loop to terminate the loop
+ immediately (2014-1-17).