fs: Create a header file for filesystem-related commands

Most commands access the filesystem through the command-line interface
rather than the filesystem API itself. Add a new header file which
contains these functions, so we can separate commands from the API.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2025-06-19 06:57:00 -06:00
parent 05e5d61cf7
commit 56c6289442
14 changed files with 99 additions and 80 deletions

View File

@@ -10,7 +10,7 @@
#include <command.h>
#include <mapmem.h>
#include <fat.h>
#include <fs_legacy.h>
#include <fs_cmd.h>
#include <part.h>
#include <asm/cache.h>