Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lfs.c
AgeCommit message (Expand)Author
2023-09-12Added lfs_fs_grow for growing the filesystem to a different block_countfs-growChristopher Haster
2023-09-12Tweaked lfs_fsinfo block_size/block_count fieldsChristopher Haster
2023-09-03Revert of refactor lfs_scan_* out of lfs_formatChristopher Haster
2023-08-21remove previous block_count detection from lfs_formatBrian Pugh
2023-08-20Add block_count and block_size to fsinfoBrian Pugh
2023-08-20lintingBrian Pugh
2023-08-18fix newly introduced missing cleanup when an invalid superblock is found.Brian Pugh
2023-08-18fix corruption checkBrian Pugh
2023-08-17Add a unit test; currently hanging on final permutation.Brian Pugh
2023-08-17introduce lfs->block_count. If cfg->block_count is 0, autopopulate from super...Brian Pugh
2023-08-17remove redundant superblock checkBrian Pugh
2023-08-17refactor lfs_scan_for_state_updates and lfs_scan_for_superblock out of lfs_fo...Brian Pugh
2023-06-29Added LFS_MULTIVERSION, made lfs2.0 support a compile-time optionChristopher Haster
2023-06-29Added support for writing on-disk version lfs2.0Christopher Haster
2023-06-29Removed fsinfo.block_usage for nowfs-statChristopher Haster
2023-06-07Changed fsinfo.minor_version -> fsinfo.disk_versionChristopher Haster
2023-06-06Promoted lfs_gstate_needssuperblock to be available in readonly buildsChristopher Haster
2023-06-06Added lfs_fs_stat for access to filesystem status/configurationChristopher Haster
2023-05-05Fix build for AVRBenjamin Valentin
2023-04-27Added lfs_fs_mkconsistentmkconsistentChristopher Haster
2023-04-27Fixed issue where lfs_fs_deorphan may run more than neededfix-deorphan-repeatedlyChristopher Haster
2023-04-26Merge pull request #805 from littlefs-project/fix-dir-seek-endChristopher Haster
2023-04-26Merge remote-tracking branch 'origin/devel' into fix-dir-seek-endfix-dir-seek-endChristopher Haster
2023-04-26Merge remote-tracking branch 'origin/devel' into fix-boundary-truncatesfix-boundary-truncatesChristopher Haster
2023-04-26Merge pull request #802 from littlefs-project/assert-minimum-block-sizeChristopher Haster
2023-04-26Merge pull request #801 from littlefs-project/assert-bool-castChristopher Haster
2023-04-26Merge pull request #809 from littlefs-project/brent-cycle-detectionChristopher Haster
2023-04-21Added ability to bump on-disk minor versionChristopher Haster
2023-04-18Fixed issue where seeking to end-of-directory return LFS_ERR_INVALChristopher Haster
2023-04-18Added explicit assert for minimum block size of 128 bytesassert-minimum-block-sizeChristopher Haster
2023-04-18Added an assert for truthy-preserving bool conversionsassert-bool-castChristopher Haster
2023-04-18Added ability to revert to inline file in lfs_file_truncateChristopher Haster
2023-04-18Fixed block-boundary truncate issueChristopher Haster
2022-12-17Fixed issue where deorphan could get stuck circling between two half-orphansChristopher Haster
2022-12-17Reverted removal of 1-bit counter threaded through tagsChristopher Haster
2022-12-17Continued implementation of forward-crcs, adopted new test runnersChristopher Haster
2022-12-17Switched to separate-tag encoding of forward-looking CRCsChristopher Haster
2022-12-17Cleaned up a few additional commit corner casesChristopher Haster
2022-12-17Initial implementation of forward-looking erase-state CRCsChristopher Haster
2022-12-17Adopted Brent's algorithm for cycle detectionbrent-cycle-detectionChristopher Haster
2022-12-07Merge remote-tracking branch 'origin/master' into test-and-bench-runnersChristopher Haster
2022-11-28Fixed incorrect calculation of extra space needed in mdir blocksChristopher Haster
2022-11-28Fixed hidden orphans by separating deorphan search into two passesChristopher Haster
2022-11-10Merge pull request #744 from littlefs-project/fix-fetchmatch-err-pathv2.5.1Christopher Haster
2022-11-10Merge pull request #740 from cbiffle/fix-invalid-block-size-reportingChristopher Haster
2022-11-10Merge pull request #724 from littlefs-project/clang-lintChristopher Haster
2022-11-04Fixed lfs_dir_fetchmatch not propogating bd errors correctly in one casefix-fetchmatch-err-pathChristopher Haster
2022-10-10Fix invalid block size reporting.Cliff L. Biffle
2022-09-07Fixed self-assign warnings discovered by clangclang-lintChristopher Haster
2022-04-25Fix unused function warning with LFS_NO_MALLOCKevin ORourke