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-10-23lfs_fs_raw* functions should be staticDaniƫl van de Giessen
2023-09-21Renamed lfs_fs_findfreeblocks -> lfs_fs_gc, tweaked documentationfs-gcChristopher Haster
2023-09-21Added API boilerplate for lfs_fs_findfreeblocks and consistent styleChristopher Haster
2023-09-21Move lookahead buffer offset at the first free block if such block doesn't ex...ondrap
2023-09-21Update lfs_find_free_blocks to match the latest changes.ondrap
2023-09-21Merge pull request #872 from littlefs-project/fs-growChristopher Haster
2023-09-21Merge pull request #866 from BrianPugh/optional-block-countChristopher Haster
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-09-03Merge pull request #863 from littlefs-project/fix-conversion-warningv2.7.1Christopher 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-08-03initlize struct lfs_diskoff disk = {0}Mohammad Dahamshi
2023-08-03Fixed integer conversion warning from Code Composer Studiofix-conversion-warningChristopher Haster
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