2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>

Add missing start symbols

	* boot/i386/pc/boot.S: add start
	boot/i386/pc/pxeboot.S: likewise
This commit is contained in:
phcoder 2009-06-04 19:35:31 +00:00
parent fd2bf2e388
commit 5b889789b1
3 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
Add missing start symbols
* boot/i386/pc/boot.S: add start
boot/i386/pc/pxeboot.S: likewise
2009-06-04 Vladimir Serbinenko <phcoder@gmail.com> 2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
Fix wrong assumptions with grub-mkimage on EFI Fix wrong assumptions with grub-mkimage on EFI

View file

@ -40,7 +40,9 @@
in real mode. */ in real mode. */
.code16 .code16
.globl _start; _start: .globl _start, start;
_start:
start:
/* /*
* _start is loaded at 0x7c00 and is jumped to with CS:IP 0:0x7c00 * _start is loaded at 0x7c00 and is jumped to with CS:IP 0:0x7c00
*/ */

View file

@ -23,7 +23,9 @@
.code16 .code16
/* Let's go */ /* Let's go */
.globl _start; _start: .globl start, _start;
_start:
start:
/* Root drive will default to boot drive */ /* Root drive will default to boot drive */
movb $0xFF, %dh movb $0xFF, %dh