Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14017
-gerrit
commit e2c080fe563cbfc841a2b26fbd24858436c97a53 Author: Martin Roth martinroth@google.com Date: Wed Mar 9 15:50:23 2016 -0700
Kconfig: remove COMPRESS_PRERAM_STAGES option from x86
Instead of just defaulting to disabled, remove the option for x86 since it doesn't work there.
Change-Id: I2b84b9f866f9231943e573b873c970f420c7c9a5 Signed-off-by: Martin Roth martinroth@google.com --- src/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Kconfig b/src/Kconfig index 3def65b..0649bf7 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -158,8 +158,8 @@ config COMPRESS_RAMSTAGE
config COMPRESS_PRERAM_STAGES bool "Compress romstage and verstage with LZ4" - default y if !ARCH_X86 - default n + depends on !ARCH_X86 + default y help Compress romstage and (if it exists) verstage with LZ4 to save flash space and speed up boot, since the time for reading the image from SPI