forked from piyl8cs5f/Iot_Cs_best
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
921 B
43 lines
921 B
1 year ago
|
config FS_VFS
|
||
|
bool "Enable VFS"
|
||
|
default y
|
||
|
|
||
|
help
|
||
|
Answer Y to enable LiteOS support virtual filesystem.
|
||
|
|
||
|
config FS_VFS_BLOCK_DEVICE
|
||
|
bool "Enable Block DEVICE"
|
||
|
default n
|
||
|
depends on FS_VFS
|
||
|
help
|
||
|
Answer Y to enable LiteOS support read/open/seek/write block device.
|
||
|
|
||
|
config FILE_MODE
|
||
|
bool "Enable FILE MODE"
|
||
|
default y
|
||
|
depends on FS_VFS
|
||
|
help
|
||
|
Answer Y to enable LiteOS support file mode.
|
||
|
|
||
|
config ENABLE_READ_BUFFER
|
||
|
bool "Enable read buffer Option"
|
||
|
default n
|
||
|
depends on FS_VFS
|
||
|
help
|
||
|
Answer Y to add enable read buffer Option.
|
||
|
|
||
|
config MAX_VNODE_SIZE
|
||
|
int "Vnode max number"
|
||
|
range 0 512
|
||
|
default 512
|
||
|
depends on FS_VFS
|
||
|
help
|
||
|
vnode number, range from 0 to 512.
|
||
|
|
||
|
config MAX_PATH_CACHE_SIZE
|
||
|
int "PathCache max number"
|
||
|
range 0 1024
|
||
|
default 512
|
||
|
depends on FS_VFS
|
||
|
help
|
||
|
pathCache number, range from 0 to 1024.
|