Changeset b0ac906b283b428ba1c7f35fe1e71a84b3d3d9c6 for dos
- 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:
- dos
- Files:
-
- 2 modified
-
Makefile (modified) (1 diff)
-
syslinux.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dos/Makefile
rd7e6cf rb0ac90 28 28 29 29 SRCS = syslinux.c \ 30 ../libinstaller/f at.c \30 ../libinstaller/fs.c \ 31 31 ../libinstaller/syslxmod.c \ 32 32 ../libinstaller/syslxopt.c \ -
dos/syslinux.c
rc02184 rb0ac90 32 32 #include "syslxopt.h" 33 33 #include "syslxint.h" 34 #include "syslxfs.h" 34 35 35 36 char *program = "syslinux.com"; /* Name of program */ … … 639 640 * Check to see that what we got was indeed an MS-DOS boot sector/superblock 640 641 */ 641 if ((errmsg = syslinux_check_bootsect(sectbuf ))) {642 if ((errmsg = syslinux_check_bootsect(sectbuf, NULL))) { 642 643 unlock_device(0); 643 644 puts(errmsg); … … 750 751 751 752 /* Copy the syslinux code into the boot sector */ 752 syslinux_make_bootsect(sectbuf );753 syslinux_make_bootsect(sectbuf, VFAT); 753 754 754 755 /* Write new boot sector */
