:orphan: .. title:: CONFIG_DISK_FLASH_DEV_NAME .. kconfig:: CONFIG_DISK_FLASH_DEV_NAME CONFIG_DISK_FLASH_DEV_NAME ########################## *Flash device name to be used as storage backend* Type: ``string`` Direct dependencies =================== (\ :kconfig:`DISK_DRIVER_FLASH ` && \ :kconfig:`BOARD_DEGU_EVK `) || (\ :kconfig:`DISK_DRIVER_FLASH ` && \ :kconfig:`SOC_FLASH_NIOS2_QSPI ` && \ :kconfig:`FLASH ` && \ :kconfig:`BOARD_ALTERA_MAX10 `) || (\ :kconfig:`DISK_DRIVER_FLASH ` && \ :kconfig:`DISK_DRIVERS `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - "NRF_FLASH_DRV_NAME" - \ :kconfig:`SOC_FLASH_NIOS2_QSPI_DEV_NAME ` Kconfig definitions =================== At ``/arm/degu_evk/Kconfig.defconfig:29`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config DISK_FLASH_DEV_NAME string default "NRF_FLASH_DRV_NAME" depends on DISK_DRIVER_FLASH && BOARD_DEGU_EVK ---- At ``/nios2/altera_max10/Kconfig.defconfig:20`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config DISK_FLASH_DEV_NAME string default SOC_FLASH_NIOS2_QSPI_DEV_NAME depends on DISK_DRIVER_FLASH && SOC_FLASH_NIOS2_QSPI && FLASH && BOARD_ALTERA_MAX10 ---- At ``/disk/Kconfig.flash:18`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:116`` → ``/disk/Kconfig:12`` Menu path: (Top) → Device Drivers → Disk Drivers → Flash .. code-block:: kconfig config DISK_FLASH_DEV_NAME string "Flash device name to be used as storage backend" depends on DISK_DRIVER_FLASH && DISK_DRIVERS *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*