Files
openharmony_kernel_liteos_a/fs/romfs/Kconfig
chenwei c4595d2504 feat(file system): add memory-based romfs
1, this RomFS's codebase is Nuttx romfs, then it is compatible with
Linux RomFS and you can create such a file system using the tool genromfs.
2, there are two major changes against with the original Nuttx romfs:
    1), it is memory-based: all contents of the fs are stored in the
        memory in the very first stage of "mount".
    2), this version of romfs is altered to be compatible with our new
        version of VFS to take advantage of vnode cache and path cache.

close: #I3S0CP
2021-06-04 16:39:51 +08:00

7 lines
143 B
Plaintext

config FS_ROMFS
bool "Enable ROMFS"
default n
depends on FS_VFS
help
Answer Y to enable LiteOS support romfs filesystem.