1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
5 * Inspired by cmd_ext_common.c, cmd_fat.c.
12 static int do_size_wrapper(struct cmd_tbl *cmdtp, int flag, int argc,
15 return do_size(cmdtp, flag, argc, argv, FS_TYPE_ANY);
19 size, 4, 0, do_size_wrapper,
20 "determine a file's size",
21 "<interface> <dev[:part]> <filename>\n"
22 " - Find file 'filename' from 'dev' on 'interface'\n"
23 " and determine its size."
26 static int do_load_wrapper(struct cmd_tbl *cmdtp, int flag, int argc,
29 return do_load(cmdtp, flag, argc, argv, FS_TYPE_ANY);
33 load, 7, 0, do_load_wrapper,
34 "load binary file from a filesystem",
35 "<interface> [<dev[:part]> [<addr> [<filename> [bytes [pos]]]]]\n"
36 " - Load binary file 'filename' from partition 'part' on device\n"
37 " type 'interface' instance 'dev' to address 'addr' in memory.\n"
38 " 'bytes' gives the size to load in bytes.\n"
39 " If 'bytes' is 0 or omitted, the file is read until the end.\n"
40 " 'pos' gives the file byte position to start reading from.\n"
41 " If 'pos' is 0 or omitted, the file is read from the start."
44 static int do_save_wrapper(struct cmd_tbl *cmdtp, int flag, int argc,
47 return do_save(cmdtp, flag, argc, argv, FS_TYPE_ANY);
51 save, 7, 0, do_save_wrapper,
52 "save file to a filesystem",
53 "<interface> <dev[:part]> <addr> <filename> bytes [pos]\n"
54 " - Save binary file 'filename' to partition 'part' on device\n"
55 " type 'interface' instance 'dev' from addr 'addr' in memory.\n"
56 " 'bytes' gives the size to save in bytes and is mandatory.\n"
57 " 'pos' gives the file byte position to start writing to.\n"
58 " If 'pos' is 0 or omitted, the file is written from the start."
61 static int do_ls_wrapper(struct cmd_tbl *cmdtp, int flag, int argc,
64 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_ANY);
68 ls, 4, 1, do_ls_wrapper,
69 "list files in a directory (default /)",
70 "<interface> [<dev[:part]> [directory]]\n"
71 " - List files in directory 'directory' of partition 'part' on\n"
72 " device type 'interface' instance 'dev'."
75 static int do_ln_wrapper(struct cmd_tbl *cmdtp, int flag, int argc,
78 return do_ln(cmdtp, flag, argc, argv, FS_TYPE_ANY);
82 ln, 5, 1, do_ln_wrapper,
83 "Create a symbolic link",
84 "<interface> <dev[:part]> target linkname\n"
85 " - create a symbolic link to 'target' with the name 'linkname' on\n"
86 " device type 'interface' instance 'dev'."
89 static int do_fstype_wrapper(struct cmd_tbl *cmdtp, int flag, int argc,
92 return do_fs_type(cmdtp, flag, argc, argv);
96 fstype, 4, 1, do_fstype_wrapper,
97 "Look up a filesystem type",
98 "<interface> <dev>:<part>\n"
99 "- print filesystem type\n"
100 "fstype <interface> <dev>:<part> <varname>\n"
101 "- set environment variable to filesystem type\n"
104 static int do_fstypes_wrapper(struct cmd_tbl *cmdtp, int flag, int argc,
107 return do_fs_types(cmdtp, flag, argc, argv);
111 fstypes, 1, 1, do_fstypes_wrapper,
112 "List supported filesystem types", ""