fs: remove NFFS subsystem
NFFS is removed as it has serious bugs (by design) which haven't been resolved since extended range of time. One of most serious issues bunch were described here: https://github.com/apache/mynewt-nffs/issues/10 Since lack of support NFFS upsterem it doesn't make sense to keep it in zephyr. Signed-off-by: Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no>
This commit is contained in:
parent
b61e6d3787
commit
c0aa294690
6 changed files with 4 additions and 740 deletions
|
@ -47,7 +47,6 @@ enum fs_dir_entry_type {
|
|||
|
||||
enum fs_type {
|
||||
FS_FATFS = 0,
|
||||
FS_NFFS,
|
||||
FS_LITTLEFS,
|
||||
FS_TYPE_END,
|
||||
};
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_FILE_SYSTEM_LITTLEFS) || defined(CONFIG_FILE_SYSTEM_NFFS)
|
||||
#if defined(CONFIG_FILE_SYSTEM_LITTLEFS)
|
||||
#define MAX_FILE_NAME 256
|
||||
#else /* FAT_FS */
|
||||
#define MAX_FILE_NAME 12 /* Uses 8.3 SFN */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue