Kconfig 1007 字节
Newer Older
C
Caoruihong 已提交
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 38 39 40 41 42 43 44 45
config FS_FAT
    bool "Enable FAT"
    default n
    depends on FS_VFS
    select SUPPORT_FATFS
    select COMPAT_CMSIS
    help
      Answer Y to enable LiteOS support fat filesystem.

config FS_FAT_CACHE
    bool "Enable FAT Cache"
    default y
    depends on FS_FAT
    help
      Answer Y to enable LiteOS fat filesystem support cache.

config FS_FAT_CACHE_SYNC_THREAD
    bool "Enable FAT Cache Sync Thread"
    default n
    depends on FS_FAT_CACHE
    help
      Answer Y to enable LiteOS fat filesystem support cache sync thread.

config FS_FAT_CHINESE
    bool "Enable Chinese"
    default y
    depends on FS_FAT
    help
      Answer Y to enable LiteOS fat filesystem support Chinese.

config FS_FAT_VIRTUAL_PARTITION
    bool "Enabel Virtual Partition"
    default n
    depends on FS_FAT

config FS_FAT_VOLUMES
    int
    depends on FS_FAT
    default 32 if PLATFORM_HI3731
    default 16

config FS_FAT_DISK
    bool "Enable partinfo for storage device"
    depends on FS_FAT
    default y