2012-04-06 23:49:35 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 23:49:35 +08:00
|
|
|
#
|
2012-04-11 07:01:40 +08:00
|
|
|
|
2012-04-15 02:01:45 +08:00
|
|
|
config FS_ROMFS
|
|
|
|
bool "ROMFS file system"
|
|
|
|
default n
|
|
|
|
depends on !DISABLE_MOUNTPOINT
|
|
|
|
---help---
|
|
|
|
Enable ROMFS filesystem support
|
|
|
|
|
|
|
|
if FS_ROMFS
|
2022-02-09 22:24:04 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2022-01-04 18:33:11 +08:00
|
|
|
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
|
|
|
|
|
2012-04-15 02:01:45 +08:00
|
|
|
endif
|