diff options
author | Matt Fleming <matt.fleming@intel.com> | 2013-06-21 08:13:16 +0100 |
---|---|---|
committer | Matt Fleming <matt.fleming@intel.com> | 2013-06-21 08:13:16 +0100 |
commit | 013ef7679a573b3b3454f914f3a7f865991db9f2 (patch) | |
tree | 3c1085e95706f5b2686ba2c1285ec7d78716f655 /core | |
parent | c32bd017ef4185027b730790f1a390359388d81b (diff) | |
download | syslinux-013ef7679a573b3b3454f914f3a7f865991db9f2.tar.gz |
efi: Export __bcopyxx_len
We need to provide a __bcopyxx_len symbol for EFI because it's
referenced in generic code in libcom32.c32. Without this change,
libcom32.c32 will fail to load under EFI.
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/include/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/core.h b/core/include/core.h index 5736d393..127ac656 100644 --- a/core/include/core.h +++ b/core/include/core.h @@ -26,6 +26,7 @@ extern char cmd_line[]; extern char ConfigFile[]; extern char syslinux_banner[]; extern char copyright_str[]; +extern unsigned int __bcopyxx_len; /* * Mark symbols that are only used by BIOS as __weak until we can move @@ -35,7 +36,6 @@ extern char copyright_str[]; extern __weak uint16_t BIOSName; extern __weak char KernelName[]; extern __weak char StackBuf[]; -extern __weak unsigned int __bcopyxx_len; extern uint8_t KbdMap[256]; |