Changeset b0ac906b283b428ba1c7f35fe1e71a84b3d3d9c6 for mtools
- Timestamp:
- 09/07/11 07:19:05 (9 months ago)
- 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
- Location:
- mtools
- Files:
-
- 2 modified
-
Makefile (modified) (1 diff)
-
syslinux.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mtools/Makefile
r261317 rb0ac90 9 9 10 10 SRCS = syslinux.c \ 11 ../libinstaller/f at.c \11 ../libinstaller/fs.c \ 12 12 ../libinstaller/syslxmod.c \ 13 13 ../libinstaller/syslxopt.c \ -
mtools/syslinux.c
r04485f rb0ac90 42 42 #include "setadv.h" 43 43 #include "syslxopt.h" 44 #include "syslxfs.h" 44 45 45 46 char *program; /* Name of program */ … … 198 199 * Check to see that what we got was indeed an MS-DOS boot sector/superblock 199 200 */ 200 if ((errmsg = syslinux_check_bootsect(sectbuf ))) {201 if ((errmsg = syslinux_check_bootsect(sectbuf, NULL))) { 201 202 die(errmsg); 202 203 } … … 357 358 358 359 /* Copy the syslinux code into the boot sector */ 359 syslinux_make_bootsect(sectbuf );360 syslinux_make_bootsect(sectbuf, VFAT); 360 361 361 362 /* Write new boot sector */
