diff options
author | Tom Rini <trini@konsulko.com> | 2023-02-15 16:36:38 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-15 16:36:38 -0500 |
commit | 5a4e69db36f33e733fa292f8b7c262d481f94223 (patch) | |
tree | 79cbe5744b999371e4963da31012ed991312923a | |
parent | 806511f348cddac84d4fda61c21b512cfa208543 (diff) | |
download | u-boot-WIP/select-some-syms.zip u-boot-WIP/select-some-syms.tar.gz u-boot-WIP/select-some-syms.tar.bz2 |
common: Make ARCH_MISC_INIT be selected onlyWIP/select-some-syms
As platforms which require this hook need this hook enabled, in order to
function, or do not need this hook, it doesn't make sense to prompt the
user. As all platforms that need this hook now select the symbol, remove
the prompt text.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index e35fca6..866e3b1 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -641,7 +641,7 @@ config ARCH_EARLY_INIT_R 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" + bool help With this option U-Boot will call arch_misc_init() after relocation to allow miscellaneous arch-dependent initialisation |