• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..29-Oct-2021-

README.md A D29-Oct-2021609 2015

lfs1.c A D29-Oct-202170.3 KiB2,5841,980

lfs1.h A D29-Oct-202115.4 KiB502203

lfs1_util.c A D29-Oct-2021861 3216

lfs1_util.h A D29-Oct-20215 KiB187127

lfs2.c A D29-Oct-2021159.2 KiB5,3934,154

lfs2.h A D29-Oct-202122.6 KiB690279

lfs2_util.c A D29-Oct-2021866 3417

lfs2_util.h A D29-Oct-20217 KiB235168

README.md

1littlefs library
2================
3
4The upstream source for the files in this directory is
5https://github.com/littlefs-project/littlefs
6
7To generate the separate files with lfs1 and lfs2 prefixes run the following
8commands in the top-level directory of the littlefs repository (replace the
9version tags with the latest/desired ones, and set `$MPY_DIR`):
10
11    git checkout v1.7.2
12    python2 ./scripts/prefix.py lfs1
13    cp lfs1*.[ch] $MPY_DIR/lib/littlefs
14    git reset --hard HEAD
15
16    git checkout v2.3.0
17    python2 ./scripts/prefix.py lfs2
18    cp lfs2*.[ch] $MPY_DIR/lib/littlefs
19    git reset --hard HEAD
20