summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-02-20 18:14:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-02-20 18:14:02 -0600
commitfd56877c0a3a22fa5218dfa3df2799c914e17162 (patch)
tree5e191d2f3628c5fa8963e4539a3a2502c56af583 /apps/ChangeLog.txt
parent0d7693fca4ccbf8a4093194f0876c1baf6173956 (diff)
downloadnuttx-fd56877c0a3a22fa5218dfa3df2799c914e17162.tar.gz
nuttx-fd56877c0a3a22fa5218dfa3df2799c914e17162.tar.bz2
nuttx-fd56877c0a3a22fa5218dfa3df2799c914e17162.zip
unlink/rm can now be used on nodes in the pseudo-filesystem. There is new configuration option to suppress these costly and mostly useless operations on the pseudo-filesystem
Diffstat (limited to 'apps/ChangeLog.txt')
-rw-r--r--apps/ChangeLog.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index cd58a46c7..be52ac6b4 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -798,7 +798,7 @@
(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).
+ 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).
@@ -831,6 +831,12 @@
* apps/nshlib: 'mkdir' can now be used in the pseudo-filesystem. Hence,
the command needs to be available even if there are no write-able
filesystem enabled (2014-2-19).
- * apps/nshlib: 'rename' can now be used in the pseudo-filesystem. Hence,
+ * apps/nshlib: 'mv' can now be used in the pseudo-filesystem. Hence,
the 'mv' command needs to be available even if there are no write-able
filesystem enabled (2014-2-19).
+ * apps/nshlib: 'rm' can now be used to remove nodes frm the pseudo-
+ filesystem. Hence, the 'rm' command needs to be available even if there
+ are no write-able filesystem enabled (2014-2-20).
+ * CONFIG_DISABLE_PSEUDOFS_OPERATIONS: This new configuration setting
+ basically backs out the recent changes to mv, rm, mkdir, and rmdir
+ (2014-2-20).