:orphan: .. title:: CONFIG_FILE_SYSTEM_SHELL .. kconfig:: CONFIG_FILE_SYSTEM_SHELL CONFIG_FILE_SYSTEM_SHELL ######################## *Enable file system shell* Type: ``bool`` Help ==== .. code-block:: none This shell provides basic browsing of the contents of the file system. Direct dependencies =================== \ :kconfig:`SHELL ` && \ :kconfig:`HEAP_MEM_POOL_SIZE ` > 0 && \ :kconfig:`FILE_SYSTEM ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== At ``/fs/Kconfig:46`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:25`` Menu path: (Top) → Sub Systems and OS Services → File Systems → File system support .. code-block:: kconfig config FILE_SYSTEM_SHELL bool "Enable file system shell" depends on SHELL && HEAP_MEM_POOL_SIZE > 0 && FILE_SYSTEM help This shell provides basic browsing of the contents of the file system. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*