mirror of
https://github.com/apache/nuttx.git
synced 2026-08-27 12:20:46 +00:00
Split mnemofs into allocation, directory, file, CTZ, and read/write modules, and update direntry traversal and file handling. Add superblock format version 1 support, reject newer on-flash versions, and preserve the mounted version when rewriting metadata. Update the NAND simulator drivers for the new mnemofs behavior by fixing spare writes, exposing the erase state, allowing raw reads, and documenting the background-task startup flow. Signed-off-by: Saurav Pal <resyfer.dev@gmail.com>
11 lines
302 B
Text
11 lines
302 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config FS_MNEMOFS
|
|
bool "MNEMOFS NAND Flash File System"
|
|
default n
|
|
depends on !DISABLE_MOUNTPOINT && MTD_NAND
|
|
---help---
|
|
Build the mnemofs NAND flash file system.
|