diff options
author | Mario Six | 2018-03-28 14:38:16 +0200 |
---|---|---|
committer | Tom Rini | 2018-04-08 14:52:54 -0400 |
commit | 2aeb22d9ab02ba922ede2883391b314ac9e2baac (patch) | |
tree | ec6a386d879ef659feb178ad0cff90f01539ca0d /common | |
parent | 02ddc1477cf2217867750deb99f79dee0b88142b (diff) |
treewide: Migrate CONFIG_LAST_STAGE_INIT to Kconfig
Migrate the CONFIG_LAST_STAGE_INIT option to Kconfig.
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index f09e77d9efe..5c90ce4629f 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -602,6 +602,15 @@ config BOARD_EARLY_INIT_R relocation. With this option, U-Boot calls board_early_init_r() in the post-relocation init sequence. +config LAST_STAGE_INIT + bool "Call board-specific as last setup step" + help + Some boards need to perform initialisation immediately before control + is passed to the command-line interpreter (e.g. for initializations + that depend on later phases in the init sequence). With this option, + U-Boot calls last_stage_init() before the command-line interpreter is + started. + endmenu menu "Security support" |