diff options
author | Alek Du <alek.du@intel.com> | 2010-06-08 22:28:33 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-09 10:57:27 -0700 |
commit | 146c34a2632a4295b1aef44ef79e84b4d4b9cf7e (patch) | |
tree | eb744f032eaee413fcff54c3c67ad2f8daab5207 /linux/syslinux.c | |
parent | 0153498e9ce97fbf7329b590ddb7a373e33b12e6 (diff) | |
download | syslinux-146c34a2632a4295b1aef44ef79e84b4d4b9cf7e.tar.gz |
Make syslinux installer real "pathbased"
The previous merging extlinux/syslinux patch is not sufficient, the
syslinux is not real "patchbased", hence:
* fill currentdir in patcharea
* search "extlinux.conf" and "syslinux.cfg" for generic_load_config
* define boot_image and boot_sector macro for ldsyslinux
this could make further merging extlinux and syslinux possible
Signed-off-by: Alek Du <alek.du@intel.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'linux/syslinux.c')
-rw-r--r-- | linux/syslinux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/syslinux.c b/linux/syslinux.c index 3032edce..1194fbb3 100644 --- a/linux/syslinux.c +++ b/linux/syslinux.c @@ -465,7 +465,7 @@ umount: /* * Patch ldlinux.sys and the boot sector */ - i = syslinux_patch(sectors, ldlinux_sectors, opt.stupid_mode, opt.raid_mode); + i = syslinux_patch(sectors, ldlinux_sectors, opt.stupid_mode, opt.raid_mode, subdir); patch_sectors = (i + SECTOR_SIZE - 1) >> SECTOR_SHIFT; /* |