## 1. 简介 - mklittlefs 是在linux下用于制作littlefs 的映像文件工具 ## 2. mklittlefs 使用说明 USAGE: ./mklittlefs {-c |-u |-l} [-d <0-5>] [-a] [-b ] [-p ] [-s ] [--] [--version] [-h] Where: -c , --create (OR required) create littlefs image from a directory -- OR -- -u , --unpack (OR required) unpack littlefs image to a directory -- OR -- -l, --list (OR required) list files in littlefs image -d <0-5>, --debug <0-5> Debug level. 0 means no debug output. -a, --all-files when creating an image, include files which are normally ignored; currently only applies to '.DS_Store' files and '.git' directories -b , --block fs block size, in bytes -p , --page fs page size, in bytes -s , --size fs image size, in bytes --, --ignore_rest Ignores the rest of the labeled arguments following this flag. --version Displays version information and exits. -h, --help Displays usage information and exits. (required) littlefs image file ## 3. 制作步骤 1. 将要制作的源文件放置到littlefs下 2. ./mklittlefs -c bk/ -b 4096 -p 256 -s 1048576 littlefs.bin //储介质block size 4096字节,page size 256字节,文件系统镜像像size 1048576字节 3. 生成的映像文件为 littlefs.bin