• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1config FS_FAT
2    bool "Enable FAT"
3    default y
4    depends on FS_VFS
5    help
6      Answer Y to enable LiteOS support fat filesystem.
7
8config FS_FAT_CACHE
9    bool "Enable FAT Cache"
10    default y
11    depends on FS_FAT
12    help
13      Answer Y to enable LiteOS fat filesystem support cache.
14
15config FS_FAT_CACHE_SYNC_THREAD
16    bool "Enable FAT Cache Sync Thread"
17    default n
18    depends on FS_FAT_CACHE
19    help
20      Answer Y to enable LiteOS fat filesystem support cache sync thread.
21
22config FS_FAT_CHINESE
23    bool "Enable Chinese"
24    default y
25    depends on FS_FAT
26    help
27      Answer Y to enable LiteOS fat filesystem support Chinese.
28
29config FS_FAT_VIRTUAL_PARTITION
30    bool "Enable Virtual Partition"
31    default n
32    depends on FS_FAT
33
34config FS_FAT_VOLUMES
35    int
36    depends on FS_FAT
37    default 32 if PLATFORM_HI3731
38    default 16
39
40config FS_FAT_DISK
41    bool "Enable partinfo for storage device"
42    depends on FS_VFS && (FS_FAT || DRIVERS_MMC || DRIVERS_USB)
43    default y
44