mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 00:14:22 +08:00
fs/littlefs: VFS wrapper improvement: (1) Support block device interface, (2) support ioctl, stat and sync file operation, (3) support forceformat and autoformat option, (4) update file->f_pos and dir->fd_position, (5)remote the internal struct from dir, and (6) emove mtd byte read/write requirement.
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@ config FS_LITTLEFS
|
||||
default n
|
||||
select FS_READABLE
|
||||
select FS_WRITABLE
|
||||
depends on !DISABLE_MOUNTPOINT && MTD_BYTE_WRITE && EXPERIMENTAL
|
||||
depends on !DISABLE_MOUNTPOINT
|
||||
---help---
|
||||
Build the LITTLEFS file system. https://github.com/ARMmbed/littlefs.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
## usage
|
||||
|
||||
depends on !DISABLE_MOUNTPOINT && MTD_BYTE_WRITE
|
||||
depends on !DISABLE_MOUNTPOINT
|
||||
|
||||
1. register_mtddriver("/dev/w25", mtd, 0755, NULL);
|
||||
2. mount("/dev/w25", "/w25", "littlefs", 0, NULL);
|
||||
|
||||
+956
-625
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user