summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-11-15 22:37:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-11-15 22:37:14 +0000
commit6e1ea39b8e41e8600506bc5325c25969de091ff3 (patch)
tree0506f37ccd6f7779514ea52f38ab89a75f7f0657 /nuttx/ChangeLog
parent4bf2eeec797de1c158143d33c572ef38e6ccc015 (diff)
downloadnuttx-6e1ea39b8e41e8600506bc5325c25969de091ff3.tar.gz
nuttx-6e1ea39b8e41e8600506bc5325c25969de091ff3.tar.bz2
nuttx-6e1ea39b8e41e8600506bc5325c25969de091ff3.zip
Fix an error in FAT needed for interoperability with Windows when access first entry in root directory
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4093 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 1873e417b..1563caf3f 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2210,3 +2210,7 @@
* drivers/mmcsd0/mmcsd_sdio.c: Increase capacity variable from size_t
to uin64_t (if available) so that SD cards with capacities greater
than 4Gb can be supported.
+ * fs/fat/fs_fat32dirent.c: The root directory structure is different
+ from other directories. When formatted by Windows, it is not initialized
+ at all. Some additional special handling is required to initialize the
+ root directory entry to interoperate correctly with windows.