1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-16 00:33:16 +01:00
RIOT/dist/tools/mkconstfs
..
mkconstfs2.py
mkconstfs.py
README.md

Introduction

This tool creates a .c file including all data from a local directory as data structures that can be mounted using constfs.

Usage

mkconstfs.py /path/to/files /

#include "vfs.h"
#include "fs/constfs.h"
extern const vfs_mount_t _constfs;

[...]

vfs_mount((vfs_mount_t *)&_constfs);

mkconstfs2

This is an alternative tool that takes a list of files instead of a whole directory.