From 3a43300f7baae360cb5df0560324504787127742 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 31 Jan 2008 14:01:23 +0000 Subject: [PATCH] Move the text to 0x2000, so there is room for the IDT for vm86 emulation. Signed-off-by: Ronald G. Minnich Acked-by: Marc Jones git-svn-id: svn://coreboot.org/repository/coreboot-v3@570 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- arch/x86/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Makefile b/arch/x86/Makefile index dd05e1b3e7..a30caf71fd 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile @@ -206,7 +206,7 @@ STAGE2_OBJ_NEEDED = $(filter-out $(STAGE0_OBJ), $(STAGE2_OBJ)) $(obj)/coreboot.stage2 $(obj)/coreboot.stage2.map: $(obj)/stage0.init $(STAGE2_OBJ_NEEDED) $(Q)# leave a .o with full symbols in it for debugging. $(Q)printf " LD $(subst $(shell pwd)/,,$(@))\n" - $(Q)$(LD) -R $(obj)/stage0.o -Ttext 0x1000 --entry=stage2 \ + $(Q)$(LD) -R $(obj)/stage0.o -Ttext 0x2000 --entry=stage2 \ -o $(obj)/coreboot.stage2 $(STAGE2_OBJ_NEEDED) $(Q)$(NM) $(obj)/coreboot.stage2 | sort -u > $(obj)/coreboot.stage2.map