search for: syslinux_patch

Displaying 7 results from an estimated 7 matches for "syslinux_patch".

2012 Sep 10
19
Initial support for sector size >512
This set of patches add some support for sector size >512. Currently it fixes extlinux, MBR for GPT and ext partitions. Other code is unaffected. This set of patches has been tested on a read Dell machine running a beta firmware.
2012 Aug 02
0
[PATCH 1/3] ALPHA: make sector size dynamic in extlinux
...++- 9 files changed, 57 insertions(+), 39 deletions(-) diff --git a/dos/syslinux.c b/dos/syslinux.c index fa4bf38..6cd36d0 100644 --- a/dos/syslinux.c +++ b/dos/syslinux.c @@ -723,7 +723,7 @@ int main(int argc, char *argv[]) /* * Patch ldlinux.sys and the boot sector */ - i = syslinux_patch(sectors, nsectors, opt.stupid_mode, opt.raid_mode, opt.directory, NULL); + i = syslinux_patch(sectors, nsectors, opt.stupid_mode, opt.raid_mode, opt.directory, NULL, SECTOR_SIZE); patch_sectors = (i + SECTOR_SIZE - 1) >> SECTOR_SHIFT; /* diff --git a/extlinux/main.c b/extlinux/...
2016 Mar 07
1
[PATCH 4/5] installers: fix a possible buffer overflow when looking for LDLINUX_MAGIC
On 2016.03.07 03:27, Shao Miller via Syslinux wrote: > - Casting to a uintptr_t is ugly (and not C89, not that Syslinux cares > about that) Yeah, I'd have liked to avoid that too, but some compilers will complain about pointer arithmetic logic, unless you specifically use uintptr_t. But, considering your other very valid point, let me see if I can work something better here, that
2016 Mar 12
0
Adding image file support for Windows
...mboot.c32, syslinux.cfg) on the filesystem. The MBR code and fat boot code (ldlinux.bin) are already been written to the disk image as well. However, this is not sufficient to actually boot an operating system. The ldlinux.sys file and fat boot sector still need to be patched. This is what the the syslinux_patch() function in syslxmod.c does. In the end, I would to execute "syslinux.exe --install disk.img" on Windows.
2016 Mar 12
3
Adding image file support for Windows
Hi Community - I would like to request that SYSLINUX be extended to install on a filesystem image file on the Windows platform. This feature is available on Linux (option -t); however, on Windows SYSLINUX only installs with a raw device path. This feature would be use by another open source project. As an small incentive, I'll offer a small, token bounty ($50) for the developer that
2014 Dec 24
14
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
Hello syslinux, Merry Christmas! These patches will make extlinux work with umounted ext2/3/4 filesystem, for example: $ extlinux -i /dev/sdXN or $ extlinux -i file_block Also it can work with something like: $ extlinux /dev/sdXN --reset-adv or $ extlinux file_block --reset-adv We don't use a new option (I planed to use "-d" but it is already in use), it will check whether the
2015 Jan 02
13
[PATCH 0/9] linux/syslinux: support ext2/3/4 device
...tall_to_ext2() linux/syslinux: add ext_file_read() and ext_file_write() linux/syslinux: implement handle_adv_on_ext() linux/syslinux: implement write_to_ext() and add syslinuxext.c linux/syslinux: implement ext_construct_sectmap_fs() libinstaller/syslinuxext: implement syslinux_patch_bootsect() linux/syslinux: implement install_bootblock() extlinux/Makefile | 3 +- extlinux/main.c | 167 +------------- libinstaller/syslinuxext.c | 177 +++++++++++++++ libinstaller/syslinuxext.h | 5 + linux/Makefile | 5 +- linux/syslinux.c...