:orphan: .. title:: FLASH_SHELL .. option:: CONFIG_FLASH_SHELL *Enable Flash shell* Type: ``bool`` Help ==== Enable the flash shell with flash related commands such as test, write, read and erase. Direct dependencies =================== \ :option:`SHELL ` && \ :option:`FLASH_PAGE_LAYOUT ` && \ :option:`FLASH ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``drivers/flash/Kconfig:46`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:60`` Menu path: (Top) → Device Drivers → Flash hardware support .. parsed-literal:: config FLASH_SHELL bool "Enable Flash shell" default y depends on \ :option:`SHELL ` && \ :option:`FLASH_PAGE_LAYOUT ` && \ :option:`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.)*