:orphan: .. title:: CONFIG_FLASH_SIMULATOR .. kconfig:: CONFIG_FLASH_SIMULATOR CONFIG_FLASH_SIMULATOR ###################### *Flash simulator* Type: ``bool`` Help ==== .. code-block:: none Enable the flash simulator. Direct dependencies =================== (\ :kconfig:`FLASH ` && \ :kconfig:`BOARD_NATIVE_POSIX `) || (\ :kconfig:`FLASH ` && \ :kconfig:`BOARD_QEMU_X86 `) || \ :kconfig:`FLASH ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y Symbols selected by this symbol =============================== - \ :kconfig:`FLASH_HAS_PAGE_LAYOUT ` - \ :kconfig:`FLASH_HAS_DRIVER_ENABLED ` Kconfig definitions =================== At ``/posix/native_posix/Kconfig.defconfig:72`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config FLASH_SIMULATOR bool default y depends on FLASH && BOARD_NATIVE_POSIX ---- At ``/x86/qemu_x86/Kconfig.defconfig:11`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config FLASH_SIMULATOR bool default y depends on FLASH && BOARD_QEMU_X86 ---- At ``/flash/Kconfig.simulator:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:62`` → ``/flash/Kconfig:89`` Menu path: (Top) → Device Drivers → Flash hardware support .. code-block:: kconfig menuconfig FLASH_SIMULATOR bool "Flash simulator" select FLASH_HAS_PAGE_LAYOUT select FLASH_HAS_DRIVER_ENABLED depends on FLASH help Enable the flash simulator. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*