Show
Ignore:
Timestamp:
09/07/11 07:19:05 (9 months ago)
Author:
Paulo Alcantara <pcacjr@…>
Children:
045bc5cd1118fee51b19d89dc316038c8a93e5bf
Parents:
67954e370003d9bbfd8b58042669f2e9d532636f
git-author:
Paulo Alcantara <pcacjr@gmail.com> / 2011-07-05T21:32:51Z+0000
git-committer:
Paulo Alcantara <pcacjr@gmail.com> / 2011-09-07T07:19:05Z+0000
Message:

Add NTFS filesystem support to Linux and Windows installers

Signed-off-by: Paulo Alcantara <pcacjr@…>

Location:
dos
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • dos/Makefile

    rd7e6cf rb0ac90  
    2828 
    2929SRCS     = syslinux.c \ 
    30            ../libinstaller/fat.c \ 
     30           ../libinstaller/fs.c \ 
    3131           ../libinstaller/syslxmod.c \ 
    3232           ../libinstaller/syslxopt.c \ 
  • dos/syslinux.c

    rc02184 rb0ac90  
    3232#include "syslxopt.h" 
    3333#include "syslxint.h" 
     34#include "syslxfs.h" 
    3435 
    3536char *program = "syslinux.com";         /* Name of program */ 
     
    639640     * Check to see that what we got was indeed an MS-DOS boot sector/superblock 
    640641     */ 
    641     if ((errmsg = syslinux_check_bootsect(sectbuf))) { 
     642    if ((errmsg = syslinux_check_bootsect(sectbuf, NULL))) { 
    642643        unlock_device(0); 
    643644        puts(errmsg); 
     
    750751 
    751752    /* Copy the syslinux code into the boot sector */ 
    752     syslinux_make_bootsect(sectbuf); 
     753    syslinux_make_bootsect(sectbuf, VFAT); 
    753754 
    754755    /* Write new boot sector */