summaryrefslogtreecommitdiff
path: root/common/Kconfig
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-01-23 20:31:21 (GMT)
committerTom Rini <trini@konsulko.com>2017-01-25 22:38:41 (GMT)
commit4585601ae2147730fcf342ed9b57a2c684503490 (patch)
tree3b1279e8912899a095cc0166f5c4f617922145df /common/Kconfig
parenta5d67547dd9c7a527dfda1967010e703a22441ff (diff)
downloadu-boot-4585601ae2147730fcf342ed9b57a2c684503490.tar.xz
Convert CONFIG_ARCH_MISC_INIT to Kconfig
This converts the following to Kconfig: CONFIG_ARCH_MISC_INIT Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 2bfcae3..7273c3f 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -410,6 +410,14 @@ config ARCH_EARLY_INIT_R
is on. Note that board_early_init_r() is called first, if
enabled. This can be used to set up architecture-specific devices.
+config ARCH_MISC_INIT
+ bool "Call arch-specific init after relocation, when console is ready"
+ help
+ With this option U-Boot will call arch_misc_init() after
+ relocation to allow miscellaneous arch-dependent initialisation
+ to be performed. This function should be defined by the board
+ and will be called after the console is set up, after relocaiton.
+
config BOARD_EARLY_INIT_F
bool "Call board-specific init before relocation"
default y if X86