diff options
| author | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-15 16:18:24 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-15 16:18:24 -0700 |
| commit | 7ebe9987b9e2416716a56213341221489bf8ebb7 (patch) | |
| tree | a397933ab593103119fda5d638291363e46a7167 /libinstaller/syslinux.h | |
| parent | 29f9390d8e278d31d39a60c8e37febea2c9e8454 (diff) | |
| download | syslinux-7ebe9987b9e2416716a56213341221489bf8ebb7.tar.gz | |
Switch to 64-bit sector pointers everywhere
Switch to consistent use of 64-bit sector pointers; this should enable
booting even for individual *partitions* larger than 2 TB. In order
to not slow down the boot too much, switch the initial load from an
enumeration to an extent map. This means the table gets larger (since
we have to assume the worst case), but it simplifies the Sector 1 code
(since we can push all the hard stuff into the installer), and will
speed up booting in the general case.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'libinstaller/syslinux.h')
| -rw-r--r-- | libinstaller/syslinux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libinstaller/syslinux.h b/libinstaller/syslinux.h index 311b9f2e..bf2b716a 100644 --- a/libinstaller/syslinux.h +++ b/libinstaller/syslinux.h @@ -46,7 +46,8 @@ void syslinux_make_bootsect(void *); const char *syslinux_check_bootsect(const void *bs); /* This patches the boot sector and ldlinux.sys based on a sector map */ -int syslinux_patch(const uint32_t * sectors, int nsectors, +typedef uint64_t sector_t; +int syslinux_patch(const sector_t *sectors, int nsectors, int stupid, int raid_mode, const char *subdir); #endif |
