From 928a4d2d1efabe1e1d6a7fadc22ee0ac4269190e Mon Sep 17 00:00:00 2001 From: Tom Warren Date: Wed, 19 Nov 2014 16:26:41 -0700 Subject: [PATCH] rush: Increase size of bootblock due to overflow The bootblock on Rush had bumped up into the verstage allocation, causing the build to break. Reduced verstage from 60K to 58K and increased bootblock from 20K to 22K. Rush and Ryu both build fine now. BUG=none BRANCH=none TEST=Built both Rush and Ryu OK. Verifed verstage size using cbfstool and it's around 55K, so plenty of room. Change-Id: I7018f027d72d5e8aeb894857a5ac6a0bdc1de388 Signed-off-by: Tom Warren Reviewed-on: https://chromium-review.googlesource.com/230824 Reviewed-by: Aaron Durbin --- src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld b/src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld index 2c65182daa..a5d1b46d08 100644 --- a/src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld +++ b/src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld @@ -37,8 +37,8 @@ SECTIONS VBOOT2_WORK(0x40014000, 16K) STACK(0x40018000, 2K) TIMESTAMP(0x40018800, 2K) - BOOTBLOCK(0x40019000, 20K) - VERSTAGE(0x4001E000, 60K) + BOOTBLOCK(0x40019000, 22K) + VERSTAGE(0x4001E800, 58K) ROMSTAGE(0x4002D000, 76K) SRAM_END(0x40040000)