search for: map_done

Displaying 2 results from an estimated 2 matches for "map_done".

Did you mean: ap_none
2012 Aug 02
0
[PATCH 1/3] ALPHA: make sector size dynamic in extlinux
...t.directory, NULL, SECTOR_SIZE); patch_sectors = (i + SECTOR_SIZE - 1) >> SECTOR_SHIFT; /* Write the now-patched first sectors of ldlinux.sys */ diff --git a/win/syslinux.c b/win/syslinux.c index 669450e..cbf003f 100644 --- a/win/syslinux.c +++ b/win/syslinux.c @@ -432,7 +432,8 @@ map_done: /* * Patch ldlinux.sys and the boot sector */ - syslinux_patch(sectors, nsectors, opt.stupid_mode, opt.raid_mode, opt.directory, NULL); + syslinux_patch(sectors, nsectors, opt.stupid_mode, opt.raid_mode, opt.directory, NULL, + SECTOR_SIZE); /* * Rewrite the...
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.