mirror of
https://xff.cz/git/u-boot/
synced 2025-10-22 10:31:56 +02:00
command: Introduce functions to obtain command arguments
Add some functions which provide an argument to a command, or NULL if the argument does not exist. Use the same numbering as argv[] since it seems less confusing than the previous idea. Signed-off-by: Simon Glass <sjg@chromium.org> Suggested-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
4
fs/fs.c
4
fs/fs.c
@@ -749,7 +749,7 @@ int do_load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
|
||||
if (argc > 7)
|
||||
return CMD_RET_USAGE;
|
||||
|
||||
if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype)) {
|
||||
if (fs_set_blk_dev(argv[1], cmd_arg2(argc, argv), fstype)) {
|
||||
log_err("Can't set block device\n");
|
||||
return 1;
|
||||
}
|
||||
@@ -818,7 +818,7 @@ int do_ls(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
|
||||
if (argc > 4)
|
||||
return CMD_RET_USAGE;
|
||||
|
||||
if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
|
||||
if (fs_set_blk_dev(argv[1], cmd_arg2(argc, argv), fstype))
|
||||
return 1;
|
||||
|
||||
if (fs_ls(argc >= 4 ? argv[3] : "/"))
|
||||
|
Reference in New Issue
Block a user