Kconfig 921 字节
Newer Older
W
wenjun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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.
A
arvinzzz 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

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.