[syslinux] update Syslinux to better align with its official source

* This means disabling some warnings and removing explicit casts, but so be it...
* Also fix the minfatsize check for Large FAT32
This commit is contained in:
Pete Batard 2016-02-23 20:52:06 +00:00
parent 0e65b1c920
commit db0880e534
30 changed files with 352 additions and 75 deletions

View file

@ -40,9 +40,9 @@
#include "ntfssect.h"
unsigned char* syslinux_ldlinux[2] = { NULL, NULL };
DWORD syslinux_ldlinux_len[2];
unsigned long syslinux_ldlinux_len[2];
unsigned char* syslinux_mboot = NULL;
DWORD syslinux_mboot_len;
unsigned long syslinux_mboot_len;
// Workaround for 4K support
uint32_t SECTOR_SHIFT = 9;