:orphan: .. title:: CONFIG_IMG_ENABLE_IMAGE_CHECK .. kconfig:: CONFIG_IMG_ENABLE_IMAGE_CHECK CONFIG_IMG_ENABLE_IMAGE_CHECK ############################# *Enable image check functions* Type: ``bool`` Help ==== .. code-block:: none If enabled, there will be available the function to check flash integrity. It can be used to verify flash integrity after received a new firmware. This is useful to avoid firmware reboot and test. Another use is to ensure that firmware upgrade routines from internet server to flash slot are performing properly. Direct dependencies =================== \ :kconfig:`MCUBOOT_IMG_MANAGER ` && \ :kconfig:`IMG_MANAGER ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`FLASH_AREA_CHECK_INTEGRITY ` Symbols that select this symbol =============================== - \ :kconfig:`UPDATEHUB ` Kconfig definition ================== At ``/dfu/Kconfig:73`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:51`` Menu path: (Top) → Sub Systems and OS Services → DFU image manager .. code-block:: kconfig config IMG_ENABLE_IMAGE_CHECK bool "Enable image check functions" select FLASH_AREA_CHECK_INTEGRITY depends on MCUBOOT_IMG_MANAGER && IMG_MANAGER help If enabled, there will be available the function to check flash integrity. It can be used to verify flash integrity after received a new firmware. This is useful to avoid firmware reboot and test. Another use is to ensure that firmware upgrade routines from internet server to flash slot are performing properly. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*