Revert "Kconfig: Allow x86 to compress pre-ram stages if not run XIP"
This reverts commit 6317aff5b3
.
Reason for revert: fix broken tot master
Change-Id: Ie8075cf6c80448bfc957a1e1183f0283d2011b1b
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67287
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
f37146de32
commit
19491c526d
|
@ -173,14 +173,14 @@ config COMPRESS_RAMSTAGE
|
||||||
|
|
||||||
config COMPRESS_PRERAM_STAGES
|
config COMPRESS_PRERAM_STAGES
|
||||||
bool "Compress romstage and verstage with LZ4"
|
bool "Compress romstage and verstage with LZ4"
|
||||||
depends on (HAVE_ROMSTAGE || HAVE_VERSTAGE) && NO_XIP_EARLY_STAGES
|
depends on !ARCH_X86 && (HAVE_ROMSTAGE || HAVE_VERSTAGE)
|
||||||
# Default value set at the end of the file
|
# Default value set at the end of the file
|
||||||
help
|
help
|
||||||
Compress romstage and (if it exists) verstage with LZ4 to save flash
|
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
|
space and speed up boot, since the time for reading the image from SPI
|
||||||
(and in the vboot case verifying it) is usually much greater than the
|
(and in the vboot case verifying it) is usually much greater than the
|
||||||
time spent decompressing. Doesn't work for XIP stages for obvious
|
time spent decompressing. Doesn't work for XIP stages (assume all
|
||||||
reasons.
|
ARCH_X86 for now) for obvious reasons.
|
||||||
|
|
||||||
config COMPRESS_BOOTBLOCK
|
config COMPRESS_BOOTBLOCK
|
||||||
bool
|
bool
|
||||||
|
@ -1370,7 +1370,7 @@ config COMPRESS_RAMSTAGE
|
||||||
default y if !UNCOMPRESSED_RAMSTAGE
|
default y if !UNCOMPRESSED_RAMSTAGE
|
||||||
|
|
||||||
config COMPRESS_PRERAM_STAGES
|
config COMPRESS_PRERAM_STAGES
|
||||||
depends on (HAVE_ROMSTAGE || HAVE_VERSTAGE) && NO_XIP_EARLY_STAGES
|
depends on !ARCH_X86
|
||||||
default y
|
default y
|
||||||
|
|
||||||
config INCLUDE_CONFIG_FILE
|
config INCLUDE_CONFIG_FILE
|
||||||
|
|
Loading…
Reference in New Issue