[coreboot-gerrit] Patch set updated for coreboot: arch/x86: Change how BOOTBLOCK_CUSTOM is selected by default

Andrey Petrov (andrey.petrov@intel.com) gerrit at coreboot.org
Wed Feb 10 01:23:59 CET 2016


Andrey Petrov (andrey.petrov at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13642

-gerrit

commit 7f8775fc88396afcbaee63af8e9c913642bc843c
Author: Andrey Petrov <andrey.petrov at intel.com>
Date:   Mon Feb 8 17:46:31 2016 -0800

    arch/x86: Change how BOOTBLOCK_CUSTOM is selected by default
    
    Currently x86s select BOOTBLOCK_CUSTOM by default. With this
    change BOOTBLOCK_CUSTOM is selected only if C bootblock isn't.
    
    Change-Id: I218f3b4044175b89697790c82c384b0f85a27ade
    Signed-off-by: Andrey Petrov <andrey.petrov at intel.com>
---
 src/arch/x86/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig
index 49f940a..889e811 100644
--- a/src/arch/x86/Kconfig
+++ b/src/arch/x86/Kconfig
@@ -24,7 +24,7 @@ config ARCH_BOOTBLOCK_X86_32
 	bool
 	default n
 	select ARCH_X86
-	select BOOTBLOCK_CUSTOM
+	select BOOTBLOCK_CUSTOM if !C_ENVIRONMENT_BOOTBLOCK
 
 config ARCH_VERSTAGE_X86_32
 	bool
@@ -44,7 +44,7 @@ config ARCH_BOOTBLOCK_X86_64
 	bool
 	default n
 	select ARCH_X86
-	select BOOTBLOCK_CUSTOM
+	select BOOTBLOCK_CUSTOM if !C_ENVIRONMENT_BOOTBLOCK
 
 config ARCH_VERSTAGE_X86_64
 	bool



More information about the coreboot-gerrit mailing list