:orphan: .. title:: FILE_SYSTEM_MAX_FILE_NAME .. option:: CONFIG_FILE_SYSTEM_MAX_FILE_NAME *Optional override for maximum file name length* Type: ``int`` Help ==== Specify the maximum file name allowed across all enabled file system types. Zero or a negative value selects the maximum file name length for enabled in-tree file systems. This default may be inappropriate when registering an out-of-tree file system. Selecting a value less than the actual length supported by a file system may result in memory access violations. Direct dependencies =================== \ :option:`FILE_SYSTEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - -1 Kconfig definition ================== .. highlight:: kconfig At ``subsys/fs/Kconfig:34`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:25`` Menu path: (Top) → Sub Systems and OS Services → File Systems → File system support .. parsed-literal:: config FILE_SYSTEM_MAX_FILE_NAME int "Optional override for maximum file name length" default -1 depends on \ :option:`FILE_SYSTEM ` help Specify the maximum file name allowed across all enabled file system types. Zero or a negative value selects the maximum file name length for enabled in-tree file systems. This default may be inappropriate when registering an out-of-tree file system. Selecting a value less than the actual length supported by a file system may result in memory access violations. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*