summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/bootblock_crt0.S
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2020-10-26 20:21:34 -0700
committerJulius Werner <jwerner@chromium.org>2020-12-03 00:10:34 +0000
commit0ba16637d8f12fe9ba8388222cfa71fc5206c0f3 (patch)
tree97a2ba579c41cb3d023d0e16bfbf30aaaf02e5f8 /src/arch/x86/bootblock_crt0.S
parentc4ee28c61d955f598f475ed70951a83ab55d7e45 (diff)
downloadcoreboot-0ba16637d8f12fe9ba8388222cfa71fc5206c0f3.tar.gz
coreboot-0ba16637d8f12fe9ba8388222cfa71fc5206c0f3.tar.bz2
coreboot-0ba16637d8f12fe9ba8388222cfa71fc5206c0f3.zip
x86: Put bootblock startup code into .text._start section
The initial bootblock assembly code on x86 is just put into the .text section, which just happens to come before all the individual .text.* function sections in the program.ld script. So it tends to be at the start of the image, but if you inserted another linker script section with contents before .text, it would cause a problem. (I'm not sure if it's an architectural requirement for _start16bit to come at the start of the image, but at least its 4K alignment requirement would waste a lot of space if it didn't.) This patch moves the section to .text._start which is the name other architectures use for the code they want in the very front of the image and which is listed first in program.ld. Signed-off-by: Julius Werner <jwerner@chromium.org> Change-Id: Ia84e6e33ec29584d356e226e8fdcb8c9334d49af Reviewed-on: https://review.coreboot.org/c/coreboot/+/46834 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/x86/bootblock_crt0.S')
-rw-r--r--src/arch/x86/bootblock_crt0.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/bootblock_crt0.S b/src/arch/x86/bootblock_crt0.S
index 3f41464f871b..82ae97f9c6a6 100644
--- a/src/arch/x86/bootblock_crt0.S
+++ b/src/arch/x86/bootblock_crt0.S
@@ -10,7 +10,7 @@
#include <cpu/x86/cr.h>
-.section .text
+.section .text._start
/*
* Include the old code for reset vector and protected mode entry. That code has