Attention is currently required from: Jérémy Compostella.
Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/84052?usp=email )
Change subject: car.ld: Fix bug with LLD ......................................................................
car.ld: Fix bug with LLD
Somehow LLD does not know how to deal with this region and places it quite high which overlaps with bootblock. As this section is not used it can be dropped.
Change-Id: I9cdd1b509bb9ff449e692109a4b674f8bfd732a4 Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/arch/x86/car.ld 1 file changed, 0 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/84052/1
diff --git a/src/arch/x86/car.ld b/src/arch/x86/car.ld index 4c869df..2612980 100644 --- a/src/arch/x86/car.ld +++ b/src/arch/x86/car.ld @@ -116,10 +116,6 @@ . += CONFIG_FSP_M_RC_HEAP_SIZE; }
-. = _car_region_end; -.car.mrc_var . (NOLOAD) : { - . += CONFIG_DCACHE_RAM_MRC_VAR_SIZE; -} .car.fspt_reserved . (NOLOAD) : { . += CONFIG_FSP_T_RESERVED_SIZE; }