Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | extmod/vfs_fat_misc: Remove dot-dirs filter since FatFS already does it. | Damien George | 2017-05-13 |
| | |||
* | extmod/vfs_fat: Replace listdir() with implementation of ilistdir(). | Damien George | 2017-05-10 |
| | | | | | | VfsFat no longer has the listdir() method. Rather, if listdir() functionality is needed then one should use uos.listdir() which will call VfsFat.ilistdir(). | ||
* | extmod/vfs_fat: Remove unused function fat_vfs_listdir. | Damien George | 2017-01-30 |
| | |||
* | extmod: Merge old fsusermount.h header into vfs.h and vfs_fat.h. | Damien George | 2017-01-30 |
| | | | | | vfs.h is for generic VFS declarations, and vfs_fat.h is for VfsFat specific things. | ||
* | extmod/vfs_fat: Remove MICROPY_FATFS_OO config option. | Damien George | 2017-01-30 |
| | | | | | Everyone should now be using the new ooFatFs library. The old one is no longer supported and will be removed. | ||
* | extmod: Remove MICROPY_FSUSERMOUNT and related files. | Damien George | 2017-01-30 |
| | | | | Replaced by MICROPY_VFS and the VFS sub-system. | ||
* | extmod/vfs_fat: Remove MICROPY_FSUSERMOUNT_ADHOC config option. | Damien George | 2017-01-30 |
| | |||
* | extmod/vfs_fat: Update to use FF_DIR instead of DIR. | Damien George | 2017-01-30 |
| | |||
* | extmod/vfs: Add ability for VFS sub-system to import using VfsFat. | Damien George | 2017-01-27 |
| | |||
* | extmod: Rename vfs_fat_file.h to vfs_fat.h. | Damien George | 2017-01-27 |
| | | | | And move declaration of mp_fat_vfs_type to this file. | ||
* | extmod/vfs_fat: Rework so it can optionally use OO version of FatFS. | Damien George | 2017-01-27 |
| | | | | | | If MICROPY_VFS_FAT is enabled by a port then the port must switch to using MICROPY_FATFS_OO. Otherwise a port can continue to use the FatFs code without any changes. | ||
* | extmod/vfs_fat: Use mp_raise_OSError helper function. | Damien George | 2016-10-07 |
| | |||
* | extmod/vfs_fat*: Replace text error messages by POSIX error numbers. | Robert HH | 2016-05-27 |
| | | | | | These changes are in line with similar changes in other modules, and with standard Python interface. | ||
* | extmod: When including extmod headers, prefix path with extmod/. | Damien George | 2016-05-20 |
| | |||
* | extmod/vfs_fat_misc: Fix cc3200 port build. | Paul Sokolovsky | 2016-02-29 |
| | |||
* | extmod/vfs_fat_misc: Add func prototype for pedantic warnings. | Paul Sokolovsky | 2016-02-29 |
| | |||
* | extmod/vfs_fat: Add fat_vfs_import_stat(), reusable import stat routine. | Paul Sokolovsky | 2016-02-29 |
| | | | | Moved from stmhal. | ||
* | extmod/vfs_fat: Move listdir() method from stmhal for reuse. | Paul Sokolovsky | 2016-02-28 |