X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=cmd%2Fhost.c;h=080b7cfb1d8243dcfbcb091c704486723a160602;hb=ee4e61bda4b5187d2e098accbc166b9f09c94814;hp=8d84415301f9ec6454676c334595b786d04a0af8;hpb=40fd050890e08eb6d064aaf074cf3a8b75d1251e;p=oweals%2Fu-boot.git diff --git a/cmd/host.c b/cmd/host.c index 8d84415301..080b7cfb1d 100644 --- a/cmd/host.c +++ b/cmd/host.c @@ -9,7 +9,7 @@ #include #include #include -#include +#include static int host_curr_device = -1; @@ -25,6 +25,12 @@ static int do_host_ls(cmd_tbl_t *cmdtp, int flag, int argc, return do_ls(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX); } +static int do_host_size(cmd_tbl_t *cmdtp, int flag, int argc, + char * const argv[]) +{ + return do_size(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX); +} + static int do_host_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { @@ -138,6 +144,7 @@ static cmd_tbl_t cmd_host_sub[] = { U_BOOT_CMD_MKENT(load, 7, 0, do_host_load, "", ""), U_BOOT_CMD_MKENT(ls, 3, 0, do_host_ls, "", ""), U_BOOT_CMD_MKENT(save, 6, 0, do_host_save, "", ""), + U_BOOT_CMD_MKENT(size, 3, 0, do_host_size, "", ""), U_BOOT_CMD_MKENT(bind, 3, 0, do_host_bind, "", ""), U_BOOT_CMD_MKENT(info, 3, 0, do_host_info, "", ""), U_BOOT_CMD_MKENT(dev, 0, 1, do_host_dev, "", ""), @@ -174,6 +181,7 @@ U_BOOT_CMD( "host ls hostfs - - list files on host\n" "host save hostfs - [] - " "save a file to host\n" + "host size hostfs - - determine size of file on host\n" "host bind [] - bind \"host\" device to file\n" "host info [] - show device binding & info\n" "host dev [] - Set or retrieve the current host device\n"