:orphan: .. title:: CONFIG_FLASH_SHELL .. kconfig:: CONFIG_FLASH_SHELL CONFIG_FLASH_SHELL ################## *Enable Flash shell* Type: ``bool`` Help ==== .. code-block:: none Enable the flash shell with flash related commands such as test, write, read and erase. Direct dependencies =================== \ :kconfig:`SHELL ` && \ :kconfig:`FLASH_PAGE_LAYOUT ` && \ :kconfig:`FLASH ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/flash/Kconfig:46`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:62`` Menu path: (Top) → Device Drivers → Flash hardware support .. code-block:: kconfig config FLASH_SHELL bool "Enable Flash shell" default y depends on SHELL && FLASH_PAGE_LAYOUT && FLASH help Enable the flash shell with flash related commands such as test, write, read and erase. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*