diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/failover.ld | 2 | ||||
-rw-r--r-- | src/arch/x86/include/arch/header.ld | 2 | ||||
-rw-r--r-- | src/cpu/x86/16bit/reset16.inc | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/failover.ld b/src/arch/x86/failover.ld index c8c00bbce7..e9613d996e 100644 --- a/src/arch/x86/failover.ld +++ b/src/arch/x86/failover.ld @@ -14,7 +14,7 @@ * GNU General Public License for more details. */ -ENTRY(reset_vector) +ENTRY(_start) MEMORY { rom : ORIGIN = 0xffff0000, LENGTH = 64K diff --git a/src/arch/x86/include/arch/header.ld b/src/arch/x86/include/arch/header.ld index 89cb6de467..d7fbf07ac4 100644 --- a/src/arch/x86/include/arch/header.ld +++ b/src/arch/x86/include/arch/header.ld @@ -42,5 +42,5 @@ PHDRS #endif #if IS_ENABLED(CONFIG_C_ENVIRONMENT_BOOTBLOCK) && ENV_BOOTBLOCK -ENTRY(reset_vector) +ENTRY(_start) #endif diff --git a/src/cpu/x86/16bit/reset16.inc b/src/cpu/x86/16bit/reset16.inc index d99f0b1e0c..48cb275dd7 100644 --- a/src/cpu/x86/16bit/reset16.inc +++ b/src/cpu/x86/16bit/reset16.inc @@ -1,7 +1,7 @@ .section ".reset", "ax", %progbits .code16 -.globl reset_vector -reset_vector: +.globl _start +_start: .byte 0xe9 .int _start16bit - ( . + 2 ) /* Note: The above jump is hand coded to work around bugs in binutils. |