diff options
author | Michal Simek <michal.simek@xilinx.com> | 2020-11-04 15:33:20 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-11-04 10:13:44 -0500 |
commit | 35b7ca768f7d826b77d5d3d6ccd6b1b8ed21f186 (patch) | |
tree | d8274d6ddd3c681f4b142f13decd23fe04e665ac /arch/Kconfig | |
parent | 46ce9e777c1314ccb78906992b94001194eaa87b (diff) | |
download | u-boot-35b7ca768f7d826b77d5d3d6ccd6b1b8ed21f186.zip u-boot-35b7ca768f7d826b77d5d3d6ccd6b1b8ed21f186.tar.gz u-boot-35b7ca768f7d826b77d5d3d6ccd6b1b8ed21f186.tar.bz2 |
arch: Move NEEDS_MANUAL_RELOC symbol to KconfigWIP/04Nov2020
CONFIG_NEEDS_MANUAL_RELOC macro was out of Kconfig. Move it there to be
able to use compile-time checks to reduce the number of build paths.
Fixes: f9a882438966 ("dm: core: Convert #ifdef to if() in root.c") for Microblaze
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 683e384..3b9fcce 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -4,6 +4,9 @@ config CREATE_ARCH_SYMLINK config HAVE_ARCH_IOREMAP bool +config NEEDS_MANUAL_RELOC + bool + choice prompt "Architecture select" default SANDBOX @@ -26,12 +29,14 @@ config ARM config M68K bool "M68000 architecture" select HAVE_PRIVATE_LIBGCC + select NEEDS_MANUAL_RELOC select SYS_BOOT_GET_CMDLINE select SYS_BOOT_GET_KBD select SUPPORT_OF_CONTROL config MICROBLAZE bool "MicroBlaze architecture" + select NEEDS_MANUAL_RELOC select SUPPORT_OF_CONTROL imply CMD_IRQ |