diff options
author | Fred Reitberger <reitbergerfred@gmail.com> | 2022-02-22 14:30:28 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-02-28 21:28:13 +0000 |
commit | 527d73f1bf44a5f306a3afc55b512f7bad0f032a (patch) | |
tree | 5b0993e24117bbcc762b6db6b6c6a87aee4ec3ac /src/mainboard/amd | |
parent | fadf733f953c402f7c47e60d39c88d3f64af9a65 (diff) |
mb/amd/chausie/Kconfig: Add EC FW to RO_REGION_ONLY
Include chausie EC and EFS only in the RO region when building with
vboot. Without this, the EC is also added to the FW_MAIN_A and FW_MAIN_B
regions.
Change-Id: I78de8bd639232b9fb6d775b77ecd892f28514614
Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62274
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/amd')
-rw-r--r-- | src/mainboard/amd/chausie/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainboard/amd/chausie/Kconfig b/src/mainboard/amd/chausie/Kconfig index 31bb069003..e3e079ab4d 100644 --- a/src/mainboard/amd/chausie/Kconfig +++ b/src/mainboard/amd/chausie/Kconfig @@ -66,6 +66,13 @@ config VBOOT_VBNV_OFFSET hex default 0x2A +config RO_REGION_ONLY + string + depends on VBOOT_SLOTS_RW_AB || VBOOT_SLOTS_RW_A + # Add the EFS and EC to the RO region only + # This is a chausie-specific override of soc/amd/sabrina/Kconfig + default "apu/amdfw apu/ecfw" + config CHROMEOS # Use default libpayload config select LP_DEFCONFIG_OVERRIDE if PAYLOAD_DEPTHCHARGE |