[coreboot-gerrit] New patch to review for coreboot: Kconfig: remove COMPRESS_PRERAM_STAGES option from x86

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Wed Mar 9 23:50:38 CET 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14017

-gerrit

commit 67b1bca8775a3ac4e889424072e93ccfafed1917
Author: Martin Roth <martinroth at 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 at 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



More information about the coreboot-gerrit mailing list