├── .gitignore ├── LICENSE ├── Makefile ├── OWNERS ├── bin └── example.bin ├── fmap.py ├── fmap_csum.c ├── fmap_decode.c ├── fmap_encode.c ├── fmap_test.c ├── lib ├── Makefile ├── fmap.c ├── fmap.h ├── input.h ├── input_interactive.c ├── input_kv_pair.c ├── kv_pair.c ├── kv_pair.h ├── mincrypt │ ├── Makefile │ ├── sha.c │ └── sha.h ├── valstr.c └── valstr.h └── libfmap_example.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/OWNERS -------------------------------------------------------------------------------- /bin/example.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/bin/example.bin -------------------------------------------------------------------------------- /fmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/fmap.py -------------------------------------------------------------------------------- /fmap_csum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/fmap_csum.c -------------------------------------------------------------------------------- /fmap_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/fmap_decode.c -------------------------------------------------------------------------------- /fmap_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/fmap_encode.c -------------------------------------------------------------------------------- /fmap_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/fmap_test.c -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/fmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/fmap.c -------------------------------------------------------------------------------- /lib/fmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/fmap.h -------------------------------------------------------------------------------- /lib/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/input.h -------------------------------------------------------------------------------- /lib/input_interactive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/input_interactive.c -------------------------------------------------------------------------------- /lib/input_kv_pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/input_kv_pair.c -------------------------------------------------------------------------------- /lib/kv_pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/kv_pair.c -------------------------------------------------------------------------------- /lib/kv_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/kv_pair.h -------------------------------------------------------------------------------- /lib/mincrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/mincrypt/Makefile -------------------------------------------------------------------------------- /lib/mincrypt/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/mincrypt/sha.c -------------------------------------------------------------------------------- /lib/mincrypt/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/mincrypt/sha.h -------------------------------------------------------------------------------- /lib/valstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/valstr.c -------------------------------------------------------------------------------- /lib/valstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/lib/valstr.h -------------------------------------------------------------------------------- /libfmap_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhendrix/flashmap/HEAD/libfmap_example.c --------------------------------------------------------------------------------