Skip to content
Snippets Groups Projects
Commit de70fefb authored by Jagan Teki's avatar Jagan Teki Committed by Tom Rini
Browse files

common: Kconfig: Add BOARD_LATE_INIT entry


This patch add Kconfig entry for CONFIG_BOARD_LATE_INIT

Cc: Tom Rini <trini@konsulko.com>
Signed-off-by: default avatarJagan Teki <jagan@openedev.com>
parent dec30306
No related branches found
No related tags found
No related merge requests found
...@@ -373,6 +373,16 @@ config VERSION_VARIABLE ...@@ -373,6 +373,16 @@ config VERSION_VARIABLE
Any change to this variable will be reverted at the Any change to this variable will be reverted at the
next reset. next reset.
config BOARD_LATE_INIT
bool "Enable Board late init code"
help
Sometimes board require some initialization code that might
require once the actual init done, example saving board specific env,
boot-modes etc. which eventually done at late.
So this config enable the late init code with the help of board_late_init
function which should defined on respective boards.
config DISPLAY_CPUINFO config DISPLAY_CPUINFO
bool "Display information about the CPU during start up" bool "Display information about the CPU during start up"
default y if ARM || BLACKFIN || NIOS2 || X86 || XTENSA default y if ARM || BLACKFIN || NIOS2 || X86 || XTENSA
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment