2012-04-06 17:49:35 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:08:57 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 17:49:35 +02:00
|
|
|
#
|
2012-04-11 01:01:40 +02:00
|
|
|
|
2012-04-14 20:01:45 +02: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 15:24:04 +01: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 11:33:11 +01: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-14 20:01:45 +02:00
|
|
|
endif
|