:orphan: .. title:: FLASH_SIMULATOR .. option:: CONFIG_FLASH_SIMULATOR *Flash simulator* Type: ``bool`` Help ==== Enable the flash simulator. Direct dependencies =================== (\ :option:`FLASH ` && \ :option:`BOARD_NATIVE_POSIX `) || (\ :option:`FLASH ` && \ :option:`BOARD_QEMU_X86 `) || \ :option:`FLASH ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y Symbols selected by this symbol =============================== - \ :option:`STATS ` - \ :option:`STATS_NAMES ` - \ :option:`FLASH_HAS_PAGE_LAYOUT ` - \ :option:`FLASH_HAS_DRIVER_ENABLED ` Kconfig definitions =================== .. highlight:: kconfig At ``boards/posix/native_posix/Kconfig.defconfig:66`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config FLASH_SIMULATOR bool default y depends on \ :option:`FLASH ` && \ :option:`BOARD_NATIVE_POSIX ` ---- At ``boards/x86/qemu_x86/Kconfig.defconfig:11`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config FLASH_SIMULATOR bool default y depends on \ :option:`FLASH ` && \ :option:`BOARD_QEMU_X86 ` ---- At ``drivers/flash/Kconfig.simulator:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:60`` → ``drivers/flash/Kconfig:83`` Menu path: (Top) → Device Drivers → Flash hardware support .. parsed-literal:: menuconfig FLASH_SIMULATOR bool "Flash simulator" select \ :option:`STATS ` select \ :option:`STATS_NAMES ` select \ :option:`FLASH_HAS_PAGE_LAYOUT ` select \ :option:`FLASH_HAS_DRIVER_ENABLED ` depends on \ :option:`FLASH ` help Enable the flash simulator. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*