:orphan: .. title:: DISK_FLASH_START .. option:: CONFIG_DISK_FLASH_START *Flash device start address in hex* Type: ``hex`` Help ==== This is start address of the flash to be used as storage backend. Direct dependencies =================== (\ :option:`DISK_ACCESS_FLASH ` && \ :option:`BOARD_DEGU_EVK `) || (\ :option:`DISK_ACCESS_FLASH ` && \ :option:`SOC_FLASH_NIOS2_QSPI ` && \ :option:`FLASH ` && \ :option:`BOARD_ALTERA_MAX10 `) || (\ :option:`DISK_ACCESS_FLASH ` && \ :option:`DISK_ACCESS `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - 0xf8000 - 0x0 Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/degu_evk/Kconfig.defconfig:44`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config DISK_FLASH_START hex default 0xf8000 depends on \ :option:`DISK_ACCESS_FLASH ` && \ :option:`BOARD_DEGU_EVK ` ---- At ``boards/nios2/altera_max10/Kconfig.defconfig:23`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config DISK_FLASH_START hex default 0x0 depends on \ :option:`DISK_ACCESS_FLASH ` && \ :option:`SOC_FLASH_NIOS2_QSPI ` && \ :option:`FLASH ` && \ :option:`BOARD_ALTERA_MAX10 ` ---- At ``subsys/disk/Kconfig:57`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:19`` Menu path: (Top) → Sub Systems and OS Services → Disk Interface → Flash .. parsed-literal:: config DISK_FLASH_START hex "Flash device start address in hex" depends on \ :option:`DISK_ACCESS_FLASH ` && \ :option:`DISK_ACCESS ` 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.)*