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>
+
+ 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
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
*/
.code16
/* Let's go */
-.globl _start; _start:
+.globl start, _start;
+_start:
+start:
/* Root drive will default to boot drive */
movb $0xFF, %dh