From 3d7344a7a1fcf09406460da59b61baff564bbbd3 Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Tue, 8 Jan 2013 21:05:06 -0800 Subject: ARM bootblock approach This lays out the groundwork for using a proper bootblock on ARM. Currently we bypass the bootblock entirely and go straight to romstage. However we want to utilize CBFS to maximize flexibility of placing code without relying on a lot of magic numbers which will break depending on the SoC in use. Change-Id: I9cc2a8191d2db38b27b6363ba673e5a360de9684 Signed-off-by: Stefan Reinauer Signed-off-by: David Hendricks Reviewed-on: http://review.coreboot.org/2118 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/arch/armv7/lib/id.lds | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/arch/armv7/lib') diff --git a/src/arch/armv7/lib/id.lds b/src/arch/armv7/lib/id.lds index 9e31ee615c..f2b794a194 100644 --- a/src/arch/armv7/lib/id.lds +++ b/src/arch/armv7/lib/id.lds @@ -1,5 +1,6 @@ SECTIONS { - . = (0x100000000 - CONFIG_ID_SECTION_OFFSET) - (__id_end - __id_start); + /* FIXME: determine a sensible location... */ + . = (0x2024000) - (__id_end - __id_start); .id (.): { *(.id) } -- cgit v1.2.3