From 74e27b419dc9da8ea7c7ceb9cc0ad203176d24f9 Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Sat, 9 Feb 2013 13:51:55 -0800 Subject: armv7/exynos: make BL1_SIZE_KB consistent with numbers used... The Kconfig variable indicates KB, but the number used was bytes. Let's just assume KB is correct for now. Change-Id: I910c126104f0222fc48b70a18df943f2afddeca3 Signed-off-by: David Hendricks Reviewed-on: http://review.coreboot.org/2341 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/arch/armv7/bootblock.inc | 2 +- src/arch/armv7/bootblock.lds | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/arch') diff --git a/src/arch/armv7/bootblock.inc b/src/arch/armv7/bootblock.inc index 82d801e75c..25cc8c6be4 100644 --- a/src/arch/armv7/bootblock.inc +++ b/src/arch/armv7/bootblock.inc @@ -36,7 +36,7 @@ _bl1: * on ARM, which is 8KB in size and it is prepended to the * reset vector */ - .skip CONFIG_BL1_SIZE_KB + .skip (CONFIG_BL1_SIZE_KB * 1024) .globl _start _start: b reset diff --git a/src/arch/armv7/bootblock.lds b/src/arch/armv7/bootblock.lds index fc58601439..9482cef34d 100644 --- a/src/arch/armv7/bootblock.lds +++ b/src/arch/armv7/bootblock.lds @@ -25,7 +25,7 @@ OUTPUT_ARCH(arm) TARGET(binary) SECTIONS { - ROMLOC = CONFIG_BOOTBLOCK_BASE - CONFIG_BL1_SIZE_KB; + ROMLOC = CONFIG_BOOTBLOCK_BASE - (CONFIG_BL1_SIZE_KB * 1024); /* This section might be better named .setup */ .rom ROMLOC : { -- cgit v1.2.3