2009-05-14 Christian Franke <franke@computer.org>

* commands/i386/pc/drivemap_int13h.S: Add missing EXT_C for symbols.
	This fixes build on Cygwin.
This commit is contained in:
chrfranke 2009-05-14 21:56:46 +00:00
parent 3834887fb2
commit cf353a4742
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-05-14 Christian Franke <franke@computer.org>
* commands/i386/pc/drivemap_int13h.S: Add missing EXT_C for symbols.
This fixes build on Cygwin.
2009-05-14 Pavel Roskin <proski@gnu.org> 2009-05-14 Pavel Roskin <proski@gnu.org>
* commands/i386/pc/drivemap_int13h.S: Eliminate unconditional * commands/i386/pc/drivemap_int13h.S: Eliminate unconditional

View file

@ -19,7 +19,7 @@
#include <grub/symbol.h> #include <grub/symbol.h>
#define INT13H_OFFSET(x) ((x) - grub_drivemap_handler) #define INT13H_OFFSET(x) ((x) - EXT_C(grub_drivemap_handler))
.code16 .code16
@ -31,7 +31,7 @@ FUNCTION(grub_drivemap_handler)
/* Map the drive number (always in DL). */ /* Map the drive number (always in DL). */
push %ax push %ax
push %bx push %bx
movw $INT13H_OFFSET(grub_drivemap_mapstart), %bx movw $INT13H_OFFSET(EXT_C(grub_drivemap_mapstart)), %bx
more_remaining: more_remaining:
movw %cs:(%bx), %ax movw %cs:(%bx), %ax