-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule littlefs
updated
35 files
+1 −1 | .github/workflows/post-release.yml | |
+7 −4 | .github/workflows/release.yml | |
+2 −2 | .github/workflows/status.yml | |
+70 −12 | .github/workflows/test.yml | |
+2 −2 | DESIGN.md | |
+3 −0 | Makefile | |
+27 −10 | README.md | |
+4 −3 | SPEC.md | |
+148 −71 | bd/lfs_emubd.c | |
+22 −11 | bd/lfs_emubd.h | |
+24 −19 | bd/lfs_filebd.c | |
+19 −2 | bd/lfs_filebd.h | |
+26 −39 | bd/lfs_rambd.c | |
+15 −4 | bd/lfs_rambd.h | |
+573 −242 | lfs.c | |
+106 −22 | lfs.h | |
+3 −0 | lfs_util.c | |
+15 −3 | lfs_util.h | |
+18 −12 | runners/bench_runner.c | |
+25 −13 | runners/bench_runner.h | |
+61 −16 | runners/test_runner.c | |
+29 −14 | runners/test_runner.h | |
+80 −25 | tests/test_alloc.toml | |
+3 −3 | tests/test_badblocks.toml | |
+129 −36 | tests/test_compat.toml | |
+21 −0 | tests/test_dirs.toml | |
+5 −5 | tests/test_exhaustion.toml | |
+26 −3 | tests/test_files.toml | |
+4 −0 | tests/test_interspersed.toml | |
+8 −0 | tests/test_move.toml | |
+2 −2 | tests/test_orphans.toml | |
+4 −1 | tests/test_powerloss.toml | |
+4 −0 | tests/test_seek.toml | |
+374 −0 | tests/test_superblocks.toml | |
+4 −0 | tests/test_truncate.toml |