diff options
author | Tom Rini | 2022-02-25 11:19:47 -0500 |
---|---|---|
committer | Tom Rini | 2022-03-03 16:51:19 -0500 |
commit | 6d21dd313b5d7baf0d125344de4e997a0341f348 (patch) | |
tree | 5760515ea41c2564a50574ee1eabef93caa48f2e /common/Kconfig | |
parent | da8592d5fa17a7184f9266fc17a880d57807a783 (diff) |
Convert CONFIG_BOARD_POSTCLK_INIT to Kconfig
This converts the following to Kconfig:
CONFIG_BOARD_POSTCLK_INIT
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/Kconfig')
-rw-r--r-- | common/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 82cd864baf9..add4cdae028 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -524,6 +524,12 @@ config BOARD_EARLY_INIT_R relocation. With this option, U-Boot calls board_early_init_r() in the post-relocation init sequence. +config BOARD_POSTCLK_INIT + bool "Call board_postclk_init" + help + Some boards need this to initialize select items, after clocks / + timebase and before env / serial. + config BOARD_LATE_INIT bool "Execute Board late init" help |