diff options
-rw-r--r-- | arch/x86/machine/boot_asm.S | 4 | ||||
-rw-r--r-- | arch/x86/x15.lds.S | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/machine/boot_asm.S b/arch/x86/machine/boot_asm.S index 0aaf342e..83e585aa 100644 --- a/arch/x86/machine/boot_asm.S +++ b/arch/x86/machine/boot_asm.S @@ -53,7 +53,7 @@ ASM_END(boot_header) /* * Entry point. */ -ASM_ENTRY(_start) +ASM_ENTRY(boot_start) lgdt boot_gdtr /* Keep %eax and %ebx */ @@ -116,7 +116,7 @@ ASM_ENTRY(_start) /* Never reached */ nop -ASM_END(_start) +ASM_END(boot_start) .code32 diff --git a/arch/x86/x15.lds.S b/arch/x86/x15.lds.S index 260d230c..167e5eb6 100644 --- a/arch/x86/x15.lds.S +++ b/arch/x86/x15.lds.S @@ -6,7 +6,7 @@ OUTPUT_FORMAT("elf32-i386") OUTPUT_ARCH(i386) #endif /* __LP64__ */ -ENTRY(_start) +ENTRY(boot_start) #include <kern/init.h> #include <machine/boot.h> |