๐Ÿ“ฆ apache / nuttx

๐Ÿ“„ Kconfig ยท 37 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37#
# 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

config FS_ROMFS_DEBUG
	bool "ROMFS file system read/write double check"
	depends on DEBUG_FS_ERROR
	---help---
		Enable ROMFS file system read/write double check.

endif