diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-02-10 16:42:36 +0100 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2019-08-29 20:47:27 +0000 |
commit | 792098c45e5bf95ab08fe01a9a973ca35deadc55 (patch) | |
tree | 401f864c3bbed88a68ca1ed5e637c0b94fe702ba /src/arch/arm64/armv8 | |
parent | bd0a93fa28918b461eb178a5a25a27483d15d823 (diff) | |
download | coreboot-792098c45e5bf95ab08fe01a9a973ca35deadc55.tar.xz |
arch/arm64: Make ARM64 stages select ARCH_ARM64
Also don't define the default as this result in spurious lines in the
.config.
The only difference in config.h is on boards with the Nvidia tegra210
SOC that now select ARCH_ARM64, because its ramstage runs in that
mode. The resulting binary is identical however.
Change-Id: Iaa9cd902281e51f823717f6ea4c72e5736fefb31
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/31315
Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/arm64/armv8')
-rw-r--r-- | src/arch/arm64/armv8/Kconfig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/arm64/armv8/Kconfig b/src/arch/arm64/armv8/Kconfig index 2070bea197..f70b529972 100644 --- a/src/arch/arm64/armv8/Kconfig +++ b/src/arch/arm64/armv8/Kconfig @@ -1,17 +1,17 @@ config ARCH_BOOTBLOCK_ARMV8_64 - def_bool n + bool select ARCH_BOOTBLOCK_ARM64 config ARCH_VERSTAGE_ARMV8_64 - def_bool n + bool select ARCH_VERSTAGE_ARM64 config ARCH_ROMSTAGE_ARMV8_64 - def_bool n + bool select ARCH_ROMSTAGE_ARM64 config ARCH_RAMSTAGE_ARMV8_64 - def_bool n + bool select ARCH_RAMSTAGE_ARM64 config ARCH_ARMV8_EXTENSION |