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:
mtools
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • mtools/Makefile

    r261317 rb0ac90  
    99 
    1010SRCS     = syslinux.c \ 
    11            ../libinstaller/fat.c \ 
     11           ../libinstaller/fs.c \ 
    1212           ../libinstaller/syslxmod.c \ 
    1313           ../libinstaller/syslxopt.c \ 
  • mtools/syslinux.c

    r04485f rb0ac90  
    4242#include "setadv.h" 
    4343#include "syslxopt.h" 
     44#include "syslxfs.h" 
    4445 
    4546char *program;                  /* Name of program */ 
     
    198199     * Check to see that what we got was indeed an MS-DOS boot sector/superblock 
    199200     */ 
    200     if ((errmsg = syslinux_check_bootsect(sectbuf))) { 
     201    if ((errmsg = syslinux_check_bootsect(sectbuf, NULL))) { 
    201202        die(errmsg); 
    202203    } 
     
    357358 
    358359    /* Copy the syslinux code into the boot sector */ 
    359     syslinux_make_bootsect(sectbuf); 
     360    syslinux_make_bootsect(sectbuf, VFAT); 
    360361 
    361362    /* Write new boot sector */