diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-10-31 11:05:07 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-11-04 11:00:34 -0700 |
commit | f9b55e22856a97523074f3dc40ea5d196298756a (patch) | |
tree | d290dc3c5c001321012061ca1c121894e1b94fa0 /common/cmd_ext2.c | |
parent | 3f83c87ee58d86e9a9d2e50b62f38c728bfb31f6 (diff) | |
download | u-boot-f9b55e22856a97523074f3dc40ea5d196298756a.zip u-boot-f9b55e22856a97523074f3dc40ea5d196298756a.tar.gz u-boot-f9b55e22856a97523074f3dc40ea5d196298756a.tar.bz2 |
fs: rename fsload command to load
When the generic filesystem load command "fsload" was written, I felt
that "load" was too generic of a name for it, since many other similar
commands already existed. However, it turns out that there is already
an "fsload" command, so that name cannot be used. Rename the new
"fsload" to plain "load" to avoid the conflict. At least anyone who's
used a Basic interpreter should feel familiar with the name!
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'common/cmd_ext2.c')
-rw-r--r-- | common/cmd_ext2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_ext2.c b/common/cmd_ext2.c index 7f22598..f25e22b 100644 --- a/common/cmd_ext2.c +++ b/common/cmd_ext2.c @@ -49,7 +49,7 @@ int do_ext2ls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) */ int do_ext2load (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { - return do_fsload(cmdtp, flag, argc, argv, FS_TYPE_EXT, 16); + return do_load(cmdtp, flag, argc, argv, FS_TYPE_EXT, 16); } U_BOOT_CMD( |