diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2020-11-22 00:34:13 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-01-28 08:51:40 +0000 |
commit | 0308313e07caf60ac77c416a448026c09351fe5d (patch) | |
tree | 35137c15639b49a08f7e7225643d6fee1d6b80f7 /src/arch/x86 | |
parent | 952e6b1ef8601edda9eee5e2a539aa349fd9efc2 (diff) |
cpu/x86: Link entry16.inc
Change-Id: I78ecd15716169b58cf6696ff8c5069ac2d5038ef
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47967
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/bootblock_crt0.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/x86/bootblock_crt0.S b/src/arch/x86/bootblock_crt0.S index 387920e38a..3e9065b707 100644 --- a/src/arch/x86/bootblock_crt0.S +++ b/src/arch/x86/bootblock_crt0.S @@ -10,13 +10,12 @@ #include <cpu/x86/cr.h> -.section .init._start, "ax", @progbits +.section .init, "ax", @progbits /* * Include the old code for reset vector and protected mode entry. That code has * withstood the test of time. */ -#include <cpu/x86/16bit/entry16.inc> #include <cpu/x86/16bit/reset16.inc> #include <cpu/x86/32bit/entry32.inc> |