:orphan: .. title:: MCUMGR_CMD_FS_MGMT .. option:: CONFIG_MCUMGR_CMD_FS_MGMT *Enable mcumgr handlers for file management (insecure)* Type: ``bool`` Help ==== Enables mcumgr handlers for file management This option allows mcumgr clients to access anything in the file system, including application-stored secrets like private keys. Use of this feature in production is strongly discouraged. Direct dependencies =================== \ :option:`FILE_SYSTEM ` && \ :option:`MCUMGR ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== .. highlight:: kconfig At ``subsys/mgmt/mcumgr/Kconfig:34`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:35`` → ``subsys/mgmt/Kconfig:9`` Menu path: (Top) → Sub Systems and OS Services → Device Management → mcumgr Support → Command Handlers .. parsed-literal:: menuconfig MCUMGR_CMD_FS_MGMT bool "Enable mcumgr handlers for file management (insecure)" depends on \ :option:`FILE_SYSTEM ` && \ :option:`MCUMGR ` help Enables mcumgr handlers for file management This option allows mcumgr clients to access anything in the file system, including application-stored secrets like private keys. Use of this feature in production is strongly discouraged. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*