summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorNiel Fourie <lusus@denx.de>2020-03-24 18:17:04 +0300
committerTom Rini <trini@konsulko.com>2020-07-07 22:36:59 +0300
commit2280fa56a00a63bbabc2076330367ec2863a474b (patch)
tree73e2b27ac85de642194f505371fa493169b65281 /cmd
parent0ffdfbd1d0eca769878913d15f232c9219cf2aa1 (diff)
downloadu-boot-2280fa56a00a63bbabc2076330367ec2863a474b.tar.xz
cmd: fs: Add command to list supported fs types
Added command "fstypes" to list supported/included filesystems. Signed-off-by: Niel Fourie <lusus@denx.de> Cc: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org> [trini: Limit to sandbox] Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/fs.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/cmd/fs.c b/cmd/fs.c
index 3a0c465c15..5ad11647c2 100644
--- a/cmd/fs.c
+++ b/cmd/fs.c
@@ -100,3 +100,14 @@ U_BOOT_CMD(
"fstype <interface> <dev>:<part> <varname>\n"
"- set environment variable to filesystem type\n"
);
+
+static int do_fstypes_wrapper(struct cmd_tbl *cmdtp, int flag, int argc,
+ char * const argv[])
+{
+ return do_fs_types(cmdtp, flag, argc, argv);
+}
+
+U_BOOT_CMD(
+ fstypes, 1, 1, do_fstypes_wrapper,
+ "List supported filesystem types", ""
+);