mirror of
https://github.com/apache/nuttx.git
synced 2026-08-02 12:49:00 +00:00
This reverts commit ac6fff747a7a6122e61de373350148331a94692f. This reverts commit c83e3f651b967c64b5652a6bd2e96bcae48417b4. This reverts commit 133db24d072457331134b683ad7b84c8a002feb9. This reverts commit 5c1248ec38964e7886b23e65f732241c5d870d69. This reverts commit 2cc850b6dcbad904282f1a326f52bff054251591. This reverts commit 49cad84508e7db903068180fe4ebdfaef335efac. Signed-off-by: guohao15 <guohao15@xiaomi.com>
30 lines
677 B
Text
30 lines
677 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_ROMFS
|
|
bool "ROMFS file system"
|
|
default n
|
|
depends on !DISABLE_MOUNTPOINT
|
|
---help---
|
|
Enable ROMFS filesystem support
|
|
|
|
if FS_ROMFS
|
|
|
|
config FS_ROMFS_CACHE_NODE
|
|
bool "Enable cache node of ROMFS file system"
|
|
default !DEFAULT_SMALL
|
|
---help---
|
|
All node will be cached to ram when file system
|
|
is mounted so that we can quick access entry of ROMFS
|
|
filesystem on emmc/sdcard.
|
|
|
|
config FS_ROMFS_CACHE_FILE_NSECTORS
|
|
int "The number of file cache sector"
|
|
range 1 256
|
|
default 1
|
|
---help---
|
|
The number of file cache sector
|
|
|
|
endif
|