HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34538 )
Change subject: arch/arm64/armv8/Kconfig: Hide ARCH_ARMV8_EXTENSION when unneeded ......................................................................
arch/arm64/armv8/Kconfig: Hide ARCH_ARMV8_EXTENSION when unneeded
This clean my .config from unused ARCH_ARMV8_EXTENSION symbol.
Change-Id: I042eb4ab5da53516029e285a0cedb72e7014ffdf Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/arch/arm64/armv8/Kconfig 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/34538/1
diff --git a/src/arch/arm64/armv8/Kconfig b/src/arch/arm64/armv8/Kconfig index 2070bea..9d90c4a 100644 --- a/src/arch/arm64/armv8/Kconfig +++ b/src/arch/arm64/armv8/Kconfig @@ -14,6 +14,7 @@ def_bool n select ARCH_RAMSTAGE_ARM64
+if ARCH_ARM64 config ARCH_ARMV8_EXTENSION int default 0 @@ -25,3 +26,4 @@ All ARMv8 implementations are downwards-compatible, so this does not need to be changed unless specific features (e.g. new instructions) are used by the SoC's coreboot code. +endif # ARCH_ARM64