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>
Fix wrong assumptions with grub-mkimage on EFI

View File

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

View File

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