:orphan: .. title:: CONFIG_DISK_FLASH_START .. kconfig:: CONFIG_DISK_FLASH_START CONFIG_DISK_FLASH_START ####################### *Flash device start address in hex* Type: ``hex`` Help ==== .. code-block:: none This is start address of the flash to be used as storage backend. 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 ======== - 0xf8000 - 0x0 Kconfig definitions =================== At ``/arm/degu_evk/Kconfig.defconfig:32`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config DISK_FLASH_START hex default 0xf8000 depends on DISK_DRIVER_FLASH && BOARD_DEGU_EVK ---- At ``/nios2/altera_max10/Kconfig.defconfig:23`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config DISK_FLASH_START hex default 0x0 depends on DISK_DRIVER_FLASH && SOC_FLASH_NIOS2_QSPI && FLASH && BOARD_ALTERA_MAX10 ---- At ``/disk/Kconfig.flash:21`` 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_START hex "Flash device start address in hex" depends on DISK_DRIVER_FLASH && DISK_DRIVERS help This is start address of the flash to be used as storage backend. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*