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:
parent
3834887fb2
commit
cf353a4742
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
||||
|
||||
* commands/i386/pc/drivemap_int13h.S: Eliminate unconditional
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
#include <grub/symbol.h>
|
||||
|
||||
#define INT13H_OFFSET(x) ((x) - grub_drivemap_handler)
|
||||
#define INT13H_OFFSET(x) ((x) - EXT_C(grub_drivemap_handler))
|
||||
|
||||
.code16
|
||||
|
||||
|
@ -31,7 +31,7 @@ FUNCTION(grub_drivemap_handler)
|
|||
/* Map the drive number (always in DL). */
|
||||
push %ax
|
||||
push %bx
|
||||
movw $INT13H_OFFSET(grub_drivemap_mapstart), %bx
|
||||
movw $INT13H_OFFSET(EXT_C(grub_drivemap_mapstart)), %bx
|
||||
|
||||
more_remaining:
|
||||
movw %cs:(%bx), %ax
|
||||
|
|
Loading…
Reference in a new issue