Home | History | Annotate | Download | only in libinstaller

Lines Matching refs:fs_type

34 void syslinux_make_bootsect(void *bs, int fs_type)
36 if (fs_type == VFAT) {
43 } else if (fs_type == NTFS) {
53 static const char *check_fat_bootsect(const void *bs, int *fs_type)
127 if (fs_type)
128 *fs_type = VFAT;
133 static const char *check_ntfs_bootsect(const void *bs, int *fs_type)
142 if (fs_type)
143 *fs_type = NTFS;
148 const char *syslinux_check_bootsect(const void *bs, int *fs_type)
169 retval = check_ntfs_bootsect(bs, fs_type);
171 retval = check_fat_bootsect(bs, fs_type);