Revision: 2250
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2250
Author: phcoder
Date: 2009-06-04 19:35:31 +0000 (Thu, 04 Jun 2009)
Log Message:
-----------
2009-06-04 Vladimir Serbinenko <[email protected]>
Add missing start symbols
* boot/i386/pc/boot.S: add start
boot/i386/pc/pxeboot.S: likewise
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/boot/i386/pc/boot.S
trunk/grub2/boot/i386/pc/pxeboot.S
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-06-04 19:32:46 UTC (rev 2249)
+++ trunk/grub2/ChangeLog 2009-06-04 19:35:31 UTC (rev 2250)
@@ -1,5 +1,12 @@
2009-06-04 Vladimir Serbinenko <[email protected]>
+ Add missing start symbols
+
+ * boot/i386/pc/boot.S: add start
+ boot/i386/pc/pxeboot.S: likewise
+
+2009-06-04 Vladimir Serbinenko <[email protected]>
+
Fix wrong assumptions with grub-mkimage on EFI
* i386/efi/grub-mkimage.c (read_kernel_module): don't write prefox here
Modified: trunk/grub2/boot/i386/pc/boot.S
===================================================================
--- trunk/grub2/boot/i386/pc/boot.S 2009-06-04 19:32:46 UTC (rev 2249)
+++ trunk/grub2/boot/i386/pc/boot.S 2009-06-04 19:35:31 UTC (rev 2250)
@@ -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
*/
Modified: trunk/grub2/boot/i386/pc/pxeboot.S
===================================================================
--- trunk/grub2/boot/i386/pc/pxeboot.S 2009-06-04 19:32:46 UTC (rev 2249)
+++ trunk/grub2/boot/i386/pc/pxeboot.S 2009-06-04 19:35:31 UTC (rev 2250)
@@ -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