Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

littlefs update #2986

Merged
merged 2 commits into from
Aug 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/littlefs
Submodule littlefs updated 68 files
+4 −0 .gitattributes
+8 −3 .github/workflows/post-release.yml
+125 −64 .github/workflows/release.yml
+49 −4 .github/workflows/status.yml
+645 −247 .github/workflows/test.yml
+25 −5 .gitignore
+513 −104 Makefile
+19 −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
+637 −219 lfs.c
+47 −6 lfs.h
+4 −6 lfs_util.h
+2,051 −0 runners/bench_runner.c
+131 −0 runners/bench_runner.h
+2,778 −0 runners/test_runner.c
+127 −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,453 −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
+185 −0 tests/test_powerloss.toml
+106 −68 tests/test_relocations.toml
+60 −37 tests/test_seek.toml
+103 −31 tests/test_superblocks.toml
+144 −84 tests/test_truncate.toml