]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
authorphcoder <phcoder@localhost>
Thu, 4 Jun 2009 19:35:31 +0000 (19:35 +0000)
committerphcoder <phcoder@localhost>
Thu, 4 Jun 2009 19:35:31 +0000 (19:35 +0000)
Add missing start symbols

* boot/i386/pc/boot.S: add start
boot/i386/pc/pxeboot.S: likewise

ChangeLog
boot/i386/pc/boot.S
boot/i386/pc/pxeboot.S

index 02008382d1437480d6d27d16cab3086bb74f7d29..1e53ca4b5dbc52cb4a8873a683d75ef5ad48c810 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 9ccfbcaa42ae27dbeac317e1ea6d78b071109a0d..fc31f5a615fd05256ddf371a3f7031a358098018 100644 (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
         */
index 4fdff764f0f8104badca4ee26e95a67994439647..b62c1447b85bf719fc1bff62ef2fd384e1afae5b 100644 (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