aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2013-06-21 08:14:24 +0100
committerMatt Fleming <matt.fleming@intel.com>2013-06-21 08:14:24 +0100
commit2a81889c7d680fbe51de63dbbeb4e8c290ec46fa (patch)
tree189744b32476e34a61b084404ff58f5ad8ad6b77
parent013ef7679a573b3b3454f914f3a7f865991db9f2 (diff)
downloadsyslinux-2a81889c7d680fbe51de63dbbeb4e8c290ec46fa.tar.gz
syslinux-2a81889c7d680fbe51de63dbbeb4e8c290ec46fa.tar.xz
syslinux-2a81889c7d680fbe51de63dbbeb4e8c290ec46fa.zip
efi: Tag symbols with __export
I missed some symbols previously that are required to be exported when loading vesamenu.c32. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
-rw-r--r--efi/main.c2
-rw-r--r--efi/vesa.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/efi/main.c b/efi/main.c
index 51ff9f39..71333a4b 100644
--- a/efi/main.c
+++ b/efi/main.c
@@ -21,7 +21,7 @@ uint32_t _IdleTimer = 0;
char __lowmem_heap[32];
uint32_t BIOS_timer_next;
uint32_t timer_irq;
-uint8_t KbdMap[256];
+__export uint8_t KbdMap[256];
char aux_seg[256];
static inline EFI_STATUS
diff --git a/efi/vesa.c b/efi/vesa.c
index d259f60a..b4a541be 100644
--- a/efi/vesa.c
+++ b/efi/vesa.c
@@ -297,7 +297,7 @@ static int efi_vesacon_font_query(uint8_t **font)
return cp865_8x16_font_height;
}
-int __vesacon_i915resolution(int x, int y)
+__export int __vesacon_i915resolution(int x, int y)
{
/* We don't support this function */
return 1;