diff options
author | Martin Roth <martinroth@google.com> | 2015-12-06 18:28:05 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-12-08 17:14:13 +0100 |
commit | c7c30a8400c33060115842554c28e2dc0852f7d7 (patch) | |
tree | 23d1bba84afbc3e1b8377c39df060b904f08eb1c /src/vendorcode/google | |
parent | d7ad21aa5ce9b571921e5cd8bb88b8e5dd404b16 (diff) | |
download | coreboot-c7c30a8400c33060115842554c28e2dc0852f7d7.tar.xz |
vendorcode/google/chromeos: Only select ELOG if SPI_FLASH is available
ELOG requires SPI_FLASH, so don't bother selecting if if SPI_FLASH isn't
available.
Change-Id: I080ac47e74aba820c94409d4913647abee215076
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12661
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/vendorcode/google')
-rw-r--r-- | src/vendorcode/google/chromeos/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig index 4d05b3e783..aae611cde2 100644 --- a/src/vendorcode/google/chromeos/Kconfig +++ b/src/vendorcode/google/chromeos/Kconfig @@ -25,7 +25,7 @@ config CHROMEOS select TPM_INIT_FAILURE_IS_FATAL if PC80_SYSTEM && LPC_TPM select SKIP_TPM_STARTUP_ON_NORMAL_BOOT if PC80_SYSTEM && LPC_TPM select BOOTMODE_STRAPS - select ELOG + select ELOG if SPI_FLASH select COLLECT_TIMESTAMPS select VBOOT_VERIFY_FIRMWARE help |