CONFIG_FILE_SYSTEM_MAX_TYPES¶
Maximum number of distinct file system types allowed
Type: int
Help¶
Zephyr provides several file system types including FatFS and
LittleFS, but it is possible to define additional ones and
register them.  A slot is required for each type.
Default¶
- 2 
Kconfig definition¶
At <Zephyr Subsystem>/fs/Kconfig:26
Included via Kconfig:8 → Kconfig.zephyr:44 → <Zephyr Subsystem>/Kconfig:25
Menu path: (Top) → Sub Systems and OS Services → File Systems → File system support
config FILE_SYSTEM_MAX_TYPES
    int "Maximum number of distinct file system types allowed"
    default 2
    depends on FILE_SYSTEM
    help
      Zephyr provides several file system types including FatFS and
      LittleFS, but it is possible to define additional ones and
      register them.  A slot is required for each type.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)