aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Kconfig4
-rw-r--r--src/arch/x86/Kconfig3
-rw-r--r--src/security/vboot/Kconfig2
3 files changed, 6 insertions, 3 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 2bcc3ce528..2afb9db177 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -245,7 +245,6 @@ config COMPRESS_BOOTBLOCK
config SEPARATE_ROMSTAGE
bool "Build a separate romstage"
- default y
help
Build a separate romstage that is loaded by bootblock. With this
option disabled the romstage sources are linked inside the bootblock
@@ -1538,3 +1537,6 @@ config HAVE_RAMSTAGE
bool
default n if RAMPAYLOAD
default y
+
+config SEPARATE_ROMSTAGE
+ default y
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig
index 0c11653675..63f71e5127 100644
--- a/src/arch/x86/Kconfig
+++ b/src/arch/x86/Kconfig
@@ -251,8 +251,9 @@ config BOOTBLOCK_SIMPLE
bool "Always load fallback"
config BOOTBLOCK_NORMAL
- select CONFIGURABLE_CBFS_PREFIX
bool "Switch to normal if CMOS says so"
+ select CONFIGURABLE_CBFS_PREFIX
+ select SEPARATE_ROMSTAGE
endchoice
diff --git a/src/security/vboot/Kconfig b/src/security/vboot/Kconfig
index 4bd36f50c7..d42dc74c51 100644
--- a/src/security/vboot/Kconfig
+++ b/src/security/vboot/Kconfig
@@ -90,7 +90,7 @@ config VBOOT_STARTS_BEFORE_BOOTBLOCK
config VBOOT_STARTS_IN_BOOTBLOCK
bool
default n
- depends on SEPARATE_ROMSTAGE
+ select SEPARATE_ROMSTAGE
help
Firmware verification happens during the end of or right after the
bootblock. This implies that a static VBOOT2_WORK() buffer must be