summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-02-27 11:13:21 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-02-27 11:13:21 -0600
commitbbf818f7f9f6663cd9fba941167a59c7bd5eee0b (patch)
tree42a128151c101c88c82f9d3c1a5491fa5ffd7dcb /apps/ChangeLog.txt
parent7e99ec812a9a62742d799e12ef487a07bc008dfb (diff)
downloadnuttx-bbf818f7f9f6663cd9fba941167a59c7bd5eee0b.tar.gz
nuttx-bbf818f7f9f6663cd9fba941167a59c7bd5eee0b.tar.bz2
nuttx-bbf818f7f9f6663cd9fba941167a59c7bd5eee0b.zip
NSH cat command now adds to newline at the end of the file so that the NSH prompt is always on a newline
Diffstat (limited to 'apps/ChangeLog.txt')
-rw-r--r--apps/ChangeLog.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 29bab006a..20397b61d 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -844,4 +844,10 @@
settings (2014-2-20).
* nshlib/nsh_telnetd.c: Use strncpy vs strcpy to avoid overrun the
username and password buffers. From Bertold Van den Bergh (2014-2-22).
-
+ * nshlib/Kconfig, nsh_proccmds.c: If the CPU load feature and the procfs
+ features are enabled, then show CPU load used by each thread in the
+ 'ps' command (2014-2-27).
+ * nshlib/nsh_fscmds.c: Add a newline after printing the file in the
+ 'cat' command. This prevents the NSH prompt from be in the same line
+ as the final line of the file in the case where there is no newline
+ at the end of the file (2014-2-27).