summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-08-17 19:57:40 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-08-17 19:57:40 +0000
commita2b87c9a5c89134182092d18630747b5777307eb (patch)
treeddc41c44bd03e8ba27dc3eb07db8af76a6a47801 /nuttx/ChangeLog
parent5c2b55b457af9b2fcd937f54cf2b1d818ace6303 (diff)
downloadnuttx-a2b87c9a5c89134182092d18630747b5777307eb.tar.gz
nuttx-a2b87c9a5c89134182092d18630747b5777307eb.tar.bz2
nuttx-a2b87c9a5c89134182092d18630747b5777307eb.zip
NSH now supports comments
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@830 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog9
1 files changed, 5 insertions, 4 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 9ba531c35..ea14d3f0e 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -394,19 +394,19 @@
0.3.13 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
- * Added mkfatfs, mkfifo, sleep, usleep and nice commands to NSH
+ * NSH: Added mkfatfs, mkfifo, sleep, usleep and nice commands
* Fixed problem with console input in Cygwin-based simulator; NSH now works
with simulator.
* NSH will now execute commands in background
* sched_get_priority_max/min returned error on SCHED_RR
* Removed duplicate getenv() implementation in /lib
* Correct detection of End-of-File in fgets
- * Implement sh and crude script handler in NSH
+ * NSH: Implemented sh and crude script handler
* Fix prototype of read() and write(). Need to use ssize_t and size_t, not
int and unsigned int.
- * Add support for redirection of command output in NSH
+ * NSH now supports redirection of command output
* NSH can now use both telnet and serial front ends together
- * $variable can be used for any command value in NSH.
+ * NSH: $variable can be used for any command value
* Fixed an error in opendir() that could cause an assertion to fail
inappropriately.
* Correct an error in the FAT that caused files opened for writing with
@@ -414,4 +414,5 @@
end of the file in that case.
* NSH now supports last exit status $?
* NSH now supports if-then[-else]-fi construct
+ * NSH now supports comments beginning with '#'