| 615 | #ifdef RT_USING_FINSH |
| 616 | #include <finsh.h> |
| 617 | void mkfs(const char *fs_name, const char *device_name) |
| 618 | { |
| 619 | dfs_mkfs(fs_name, device_name); |
| 620 | } |
| 621 | FINSH_FUNCTION_EXPORT(mkfs, make a file system); |
| 622 | |
| 623 | int df(const char *path) |
nothing calls this directly
no test coverage detected