search for: fat_f

Displaying 2 results from an estimated 2 matches for "fat_f".

Did you mean: fat_fs
2007 Apr 05
0
Patch: Add io.c functions, and vfat library
...ng type"); } /* Get 2nd partition info */ bank2_part_info = PARTITION_ENTRY(mbr, bank2); if (bank2_part_info->ostype != PART_TYPE_FAT16) { error("Warning: Bank 2 is of wrong type"); } rFd.disk_info = &disk_info; rFd.partition = bank1_part_info; fat_fs = libfat_open(fat_disk_read_handle, (intptr_t) &rFd); bootcfg_cluster = libfat_searchdir(fat_fs, 0, "BOOT CFG", NULL); if (bootcfg_cluster <= 0) { error("No boot config file found"); } bootcfg_sector = libfat_clustertosector(fat_fs, bootcfg_cluster)...
2013 Nov 19
2
[PATCH] Add filesystem UUID to SYSAPPEND for FAT
...67aaaeeb228. Signed-off-by: Serj Kalichev <serj.kalichev at gmail.com> --- com32/include/syslinux/sysappend.h | 1 + core/fs/btrfs/btrfs.c | 3 ++- core/fs/ext2/ext2.c | 1 + core/fs/fat/fat.c | 31 +++++++++++++++++++++++++++++++ core/fs/fat/fat_fs.h | 2 ++ core/fs/fs.c | 12 ++++++++++++ core/fs/iso9660/iso9660.c | 1 + core/fs/ntfs/ntfs.c | 1 + core/fs/pxe/pxe.c | 1 + core/fs/xfs/xfs.c | 1 + core/include/core.h | 1 + core...