Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81021?usp=email )
Change subject: x86/Kconfig: Select SSE2 for ARCH_ALL_STAGES_X86_64 ......................................................................
x86/Kconfig: Select SSE2 for ARCH_ALL_STAGES_X86_64
Change-Id: I78c9bb599303d3a249a2434dd38b7629e3f1ca86 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/arch/x86/Kconfig 1 file changed, 1 insertion(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/21/81021/1
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index 610321f..48eb2cd 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -39,7 +39,6 @@
config ARCH_BOOTBLOCK_X86_64 bool - select SSE2
config ARCH_VERSTAGE_X86_64 bool @@ -47,16 +46,13 @@
config ARCH_ROMSTAGE_X86_64 bool - select SSE2
config ARCH_POSTCAR_X86_64 bool default ARCH_ROMSTAGE_X86_64 && POSTCAR_STAGE - select SSE2
config ARCH_RAMSTAGE_X86_64 bool - select SSE2
config ARCH_ALL_STAGES_X86_64 bool @@ -64,6 +60,7 @@ select ARCH_VERSTAGE_X86_64 if !VBOOT_STARTS_BEFORE_BOOTBLOCK select ARCH_ROMSTAGE_X86_64 select ARCH_RAMSTAGE_X86_64 + select SSE2
config HAVE_EXP_X86_64_SUPPORT bool