From 7aed3ac79cf3c42f92fbfead5320b6875f74972e Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sun, 24 Aug 2008 11:31:19 +0000 Subject: [PATCH] For Ron: make BOOTBLOCK_SIZE a variable in the ldscript. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/coreboot-v3@814 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- arch/x86/ldscript.ld | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arch/x86/ldscript.ld b/arch/x86/ldscript.ld index 360e2f3f65..a71fb28188 100644 --- a/arch/x86/ldscript.ld +++ b/arch/x86/ldscript.ld @@ -25,10 +25,12 @@ OUTPUT_ARCH(i386) ENTRY(_start) */ +BOOTBLOCK_SIZE = 20480; + TARGET(binary) SECTIONS { - . = 0xffffb000 + 256; /* leave space for vpd */ + . = 0 - BOOTBLOCK_SIZE + 256; /* leave space for vpd */ .stage0_1 . : { _stage0_1 = .;