summaryrefslogtreecommitdiff
path: root/fs/fat
AgeCommit message (Expand)AuthorFilesLines
2021-07-12fs: fat: add file attributes to struct fs_direntHeinrich Schuchardt1-1/+31
2021-04-10fs: fat: fix file_fat_detectfs()Heinrich Schuchardt1-34/+4
2021-02-03fs: fat: remove trailing periods from long nameHeinrich Schuchardt1-2/+28
2021-02-03fs: fat: must not write directory '.' and '..'Heinrich Schuchardt1-10/+3
2021-02-03fs: fat: usage basename in file_fat_write_at, fat_mkdirHeinrich Schuchardt1-14/+13
2021-01-29fs: fat: remove superfluous assignmentsHeinrich Schuchardt2-4/+5
2021-01-29fs: fat: avoid out of bounds access warningHeinrich Schuchardt1-5/+2
2021-01-23fs: fat: structure for name and extensionHeinrich Schuchardt2-27/+25
2021-01-23fs: fat: consistent error handling for flush_dir()Heinrich Schuchardt1-27/+31
2020-12-31fs/fat: implement fsuuid commandHeinrich Schuchardt1-0/+18
2020-12-31fs: fat: eliminate DIRENTSPERBLOCK() macroHeinrich Schuchardt1-3/+2
2020-12-10fs: fat: deletion of long file namesHeinrich Schuchardt1-12/+76
2020-12-10fs: fat: first dentry of long name in FAT iteratorHeinrich Schuchardt1-2/+18
2020-12-10fs: fat: use constant DELETED_FLAGHeinrich Schuchardt1-1/+1
2020-12-10fs: fat: search file should not allocate clusterHeinrich Schuchardt1-23/+6
2020-12-10fs: fat: reuse deleted directory entriesHeinrich Schuchardt1-12/+22
2020-12-10fs: fat: fat_find_empty_dentries()Heinrich Schuchardt1-1/+61
2020-12-10fs: fat: flush new directory clusterHeinrich Schuchardt1-9/+19
2020-12-10fs: fat: set start cluster for root directoryHeinrich Schuchardt1-1/+3
2020-12-10fs: fat: dentry iterator for fill_dir_slot()Heinrich Schuchardt1-1/+1
2020-12-10fs: fat: generate unique short namesHeinrich Schuchardt1-5/+36
2020-12-10fs: fat: call set_name() only onceHeinrich Schuchardt1-33/+54
2020-12-10fs: fat: pass shortname to fill_dir_slotHeinrich Schuchardt1-8/+12
2020-12-10fs: fat: create correct short namesHeinrich Schuchardt1-76/+139
2020-12-10fs: fat: export fat_next_cluster()Heinrich Schuchardt1-32/+74
2020-12-10fs: fat: correct first cluster for '..'Heinrich Schuchardt1-1/+5
2020-11-29fs: fat: use ATTR_ARCH instead of anonymous 0x20Heinrich Schuchardt1-1/+2
2020-11-29fs: fat: directory entries starting with 0x05Heinrich Schuchardt1-2/+1
2020-11-29fs: fat: avoid NULL dereference when root dir is fullHeinrich Schuchardt1-3/+2
2020-08-05fs/fat/fat.c: Do not perform zero block reads if there are no blocks leftJason Wessel1-1/+4
2020-07-12fs/fat: reduce data size for FAT_WRITEHeinrich Schuchardt1-2/+7
2020-07-08fs: fat_write: fix short name creation.Heinrich Schuchardt1-3/+12
2020-07-07fs: fat: fix fat iterationChristian Gmeiner1-3/+1
2020-05-19common: Drop log.h from common headerSimon Glass2-0/+2
2020-05-19part: Drop disk_partition_t typedefSimon Glass1-3/+3
2020-05-19common: Drop net.h from common headerSimon Glass2-0/+2
2020-02-11Merge tag 'dm-pull-6feb20' of https://gitlab.denx.de/u-boot/custodians/u-boot-dmTom Rini1-0/+1
2020-02-07fat: write: adjust data written in each partial writeMarek Szyprowski1-1/+3
2020-02-07fat: write: fix broken write to fragmented filesMarek Szyprowski1-2/+2
2020-02-06dm: core: Create a new header file for 'compat' featuresSimon Glass1-0/+1
2019-12-05fs: fat: handle deleted directory entries correctlyAKASHI Takahiro1-1/+32
2019-10-12fs: fat: get_contents() always returns -1 for errorsHeinrich Schuchardt1-1/+1
2019-10-12fs: fat: treat invalid FAT clusters as errorsHeinrich Schuchardt1-10/+20
2019-08-26fat: FAT filesystem premature release of info struct.Martin Vystrčil1-4/+0
2019-05-29fs: fat: allocate a new cluster for root directory of fat32AKASHI Takahiro1-2/+8
2019-05-29fs: fat: flush a directory cluster properlyAKASHI Takahiro1-19/+14
2019-05-29fs: fat: write to non-cluster-aligned root directoryAKASHI Takahiro1-25/+53
2019-05-28fs: fat: Fix possible double free of fatbufAndrew F. Davis1-4/+5
2019-05-28fs: fat: correct file name normalizationHeinrich Schuchardt1-28/+20
2019-04-10fs: fat: fix reading non-cluster-aligned root directoryAnssi Hannula1-13/+34