CONFIG_BOOTLOADER_CONTEXT_RESTORE

Boot loader has context restore support

Type: bool

Help

This option signifies that the target has a bootloader that restores CPU context upon resuming from deep sleep power state.

Direct dependencies

SYS_POWER_DEEP_SLEEP_STATES && BOOTLOADER_CONTEXT_RESTORE_SUPPORTED

(Includes any dependencies from ifs and menus.)

Default

  • y

Kconfig definition

At <Zephyr>/Kconfig.zephyr:496

Included via <Zephyr>/Kconfig:8

Menu path: (Top) → Boot Options

config BOOTLOADER_CONTEXT_RESTORE
    bool "Boot loader has context restore support"
    default y
    depends on SYS_POWER_DEEP_SLEEP_STATES && BOOTLOADER_CONTEXT_RESTORE_SUPPORTED
    help
      This option signifies that the target has a bootloader
      that restores CPU context upon resuming from deep sleep
      power state.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)