summaryrefslogtreecommitdiffstats
path: root/fs/fat
Commit message (Expand)AuthorAgeFilesLines
* fs: fat: set start cluster for root directoryHeinrich Schuchardt2020-12-101-1/+3
* fs: fat: dentry iterator for fill_dir_slot()Heinrich Schuchardt2020-12-101-1/+1
* fs: fat: generate unique short namesHeinrich Schuchardt2020-12-101-5/+36
* fs: fat: call set_name() only onceHeinrich Schuchardt2020-12-101-33/+54
* fs: fat: pass shortname to fill_dir_slotHeinrich Schuchardt2020-12-101-8/+12
* fs: fat: create correct short namesHeinrich Schuchardt2020-12-101-76/+139
* fs: fat: export fat_next_cluster()Heinrich Schuchardt2020-12-101-32/+74
* fs: fat: correct first cluster for '..'Heinrich Schuchardt2020-12-101-1/+5
* fs: fat: use ATTR_ARCH instead of anonymous 0x20Heinrich Schuchardt2020-11-291-1/+2
* fs: fat: directory entries starting with 0x05Heinrich Schuchardt2020-11-291-2/+1
* fs: fat: avoid NULL dereference when root dir is fullHeinrich Schuchardt2020-11-291-3/+2
* fs/fat/fat.c: Do not perform zero block reads if there are no blocks leftJason Wessel2020-08-041-1/+4
* fs/fat: reduce data size for FAT_WRITEHeinrich Schuchardt2020-07-111-2/+7
* fs: fat_write: fix short name creation.Heinrich Schuchardt2020-07-071-3/+12
* fs: fat: fix fat iterationChristian Gmeiner2020-07-071-3/+1
* common: Drop log.h from common headerSimon Glass2020-05-182-0/+2
* part: Drop disk_partition_t typedefSimon Glass2020-05-181-3/+3
* common: Drop net.h from common headerSimon Glass2020-05-182-0/+2
* Merge tag 'dm-pull-6feb20' of https://gitlab.denx.de/u-boot/custodians/u-boot-dmTom Rini2020-02-111-0/+1
|\
| * dm: core: Create a new header file for 'compat' featuresSimon Glass2020-02-051-0/+1
* | fat: write: adjust data written in each partial writeMarek Szyprowski2020-02-071-1/+3
* | fat: write: fix broken write to fragmented filesMarek Szyprowski2020-02-071-2/+2
|/
* fs: fat: handle deleted directory entries correctlyAKASHI Takahiro2019-12-051-1/+32
* fs: fat: get_contents() always returns -1 for errorsHeinrich Schuchardt2019-10-111-1/+1
* fs: fat: treat invalid FAT clusters as errorsHeinrich Schuchardt2019-10-111-10/+20
* fat: FAT filesystem premature release of info struct.Martin Vystrčil2019-08-261-4/+0
* fs: fat: allocate a new cluster for root directory of fat32AKASHI Takahiro2019-05-281-2/+8
* fs: fat: flush a directory cluster properlyAKASHI Takahiro2019-05-281-19/+14
* fs: fat: write to non-cluster-aligned root directoryAKASHI Takahiro2019-05-281-25/+53
* fs: fat: Fix possible double free of fatbufAndrew F. Davis2019-05-281-4/+5
* fs: fat: correct file name normalizationHeinrich Schuchardt2019-05-281-28/+20
* fs: fat: fix reading non-cluster-aligned root directoryAnssi Hannula2019-04-091-13/+34
* fs: fat: fix link error when building with DEBUG=1Heinrich Schuchardt2019-02-281-3/+3
* fs: fat: Reduce default max clustersize 64KiB from malloc poolTien Fong Chee2019-02-191-1/+9
* fs: fat: dynamically allocate memory for temporary bufferTien Fong Chee2019-02-191-6/+12
* spl: fat/fs: Add option to include/exclude FAT write build in SPLTien Fong Chee2019-02-012-3/+4
* Revert "fs: fat: assign rootdir sector when accessing root directory"Tom Rini2019-01-111-4/+1
* fs: fix FAT name extractionPatrick Wildt2018-12-061-0/+3
* fs: check FAT cluster sizePatrick Wildt2018-12-061-0/+11
* fs: fat: assign rootdir sector when accessing root directoryThomas RIENOESSL2018-11-201-1/+4
* fs: fat: Fix warning in normalize_longname()Tom Rini2018-10-161-1/+1
* fs: fat: fix set_cluster()Heinrich Schuchardt2018-10-061-10/+17
* fs: fat: memory leak in fat_unlink()Heinrich Schuchardt2018-10-061-1/+7
* fs: fat: unaligned buffers are not an errorHeinrich Schuchardt2018-09-232-2/+2
* fs: fat: support unlinkAKASHI Takahiro2018-09-231-0/+132
* fs: fat: support mkdirAKASHI Takahiro2018-09-231-0/+136
* fs: fat: remember the starting cluster number of directoryAKASHI Takahiro2018-09-231-0/+3
* fs: fat: support write with non-zero offsetAKASHI Takahiro2018-09-231-15/+273
* fs: fat: refactor write interface for a file offsetAKASHI Takahiro2018-09-231-114/+65
* fs: fat: support write with sub-directory pathAKASHI Takahiro2018-09-232-322/+156