summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-04 22:00:18 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-04 22:00:18 +0000
commitd57cdbc921d1a50eb6d37471df59dbb3a8a0bb2b (patch)
tree9a1530860e4051617d323eb401ee3b282cff6ca7 /nuttx/ChangeLog
parent2bfb3e74838ca580e5155df8a3e5fbfc3c7577e5 (diff)
downloadnuttx-d57cdbc921d1a50eb6d37471df59dbb3a8a0bb2b.tar.gz
nuttx-d57cdbc921d1a50eb6d37471df59dbb3a8a0bb2b.tar.bz2
nuttx-d57cdbc921d1a50eb6d37471df59dbb3a8a0bb2b.zip
Fix max filename size report by FAT statfs with long file names; Add missing logic to support fieldwidth and justification for %s format; Add extended help options. Default help command just shows a short list of commands. Verbose and single command help options
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5008 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 9d2f5ea6b..1061f39ae 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -3120,4 +3120,8 @@
the PLL after re-awakening from deep sleep modes.
* fs/fs_foreachinode.c and fs/fs_foreachmountpoint.c: All logic to traverse
inodes and mountpoints in the NuttX psuedo-file system.
-
+ * fs/fat/fs_fat32.c: Max. filename length reported by statfs() was wrong
+ if FAT long file names were enabled.
+ * lib/stdio/lib_libvsprintf.c: Fieldwidth and justification were not
+ supported for the %s format. As a result, %s, %12s, and %-12s all
+ produced the same output.