summaryrefslogtreecommitdiffstats
path: root/src/Kconfig
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2018-06-25 15:38:45 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-06-27 02:20:11 +0000
commita8c0cb35121c30120f032ecbd0de172540db8a6c (patch)
treeb304fab5a1695ed59a3a89e663b038e2a99bd20b /src/Kconfig
parente0058e89ab94ef7ef366c596d3e03ad693694d2a (diff)
downloadcoreboot-a8c0cb35121c30120f032ecbd0de172540db8a6c.tar.gz
coreboot-a8c0cb35121c30120f032ecbd0de172540db8a6c.tar.bz2
coreboot-a8c0cb35121c30120f032ecbd0de172540db8a6c.zip
stage_cache: Disable when APCI S3 is not possible
Don't consume CBMEM for stage cache when we would never use it. Change-Id: I606e0457ff3085822554c4041fc56f0d28cc9c2d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/27230 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 875c9d0790b8..24b21060b6d3 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -1152,6 +1152,7 @@ config RELOCATABLE_MODULES
config NO_STAGE_CACHE
bool
+ default y if !HAVE_ACPI_RESUME
help
Do not save any component in stage cache for resume path. On resume,
all components would be read back from CBFS again.