Skip to content

Commit

Permalink
Update littlefs to version 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tniessen committed May 29, 2023
1 parent bf0b41b commit 4f85815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/littlefs
Submodule littlefs updated 68 files
+4 −0 .gitattributes
+8 −3 .github/workflows/post-release.yml
+124 −63 .github/workflows/release.yml
+49 −4 .github/workflows/status.yml
+589 −249 .github/workflows/test.yml
+25 −5 .gitignore
+513 −104 Makefile
+14 −1 README.md
+90 −11 SPEC.md
+662 −0 bd/lfs_emubd.c
+233 −0 bd/lfs_emubd.h
+18 −75 bd/lfs_filebd.c
+2 −11 bd/lfs_filebd.h
+16 −28 bd/lfs_rambd.c
+2 −4 bd/lfs_rambd.h
+0 −303 bd/lfs_testbd.c
+0 −142 bd/lfs_testbd.h
+270 −0 benches/bench_dir.toml
+95 −0 benches/bench_file.toml
+56 −0 benches/bench_superblock.toml
+528 −216 lfs.c
+18 −6 lfs.h
+4 −6 lfs_util.h
+2,051 −0 runners/bench_runner.c
+131 −0 runners/bench_runner.h
+2,763 −0 runners/test_runner.c
+124 −0 runners/test_runner.h
+1,430 −0 scripts/bench.py
+181 −0 scripts/changeprefix.py
+649 −226 scripts/code.py
+828 −0 scripts/cov.py
+0 −323 scripts/coverage.py
+646 −225 scripts/data.py
+0 −383 scripts/explode_asserts.py
+1,344 −0 scripts/perf.py
+1,276 −0 scripts/perfbd.py
+1,592 −0 scripts/plot.py
+1,262 −0 scripts/plotmpl.py
+0 −61 scripts/prefix.py
+452 −0 scripts/prettyasserts.py
+47 −15 scripts/readmdir.py
+636 −331 scripts/stack.py
+581 −260 scripts/structs.py
+795 −245 scripts/summary.py
+177 −0 scripts/tailpipe.py
+73 −0 scripts/teepipe.py
+1,424 −800 scripts/test.py
+1,002 −0 scripts/tracebd.py
+265 −0 scripts/watch.py
+178 −114 tests/test_alloc.toml
+31 −19 tests/test_attrs.toml
+95 −76 tests/test_badblocks.toml
+248 −0 tests/test_bd.toml
+1,360 −0 tests/test_compat.toml
+280 −95 tests/test_dirs.toml
+59 −28 tests/test_entries.toml
+67 −49 tests/test_evil.toml
+157 −117 tests/test_exhaustion.toml
+146 −116 tests/test_files.toml
+49 −23 tests/test_interspersed.toml
+270 −188 tests/test_move.toml
+181 −28 tests/test_orphans.toml
+82 −39 tests/test_paths.toml
+182 −0 tests/test_powerloss.toml
+106 −68 tests/test_relocations.toml
+60 −37 tests/test_seek.toml
+55 −31 tests/test_superblocks.toml
+144 −84 tests/test_truncate.toml

0 comments on commit 4f85815

Please sign in to comment.