]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: hash: correct parameter count check
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sat, 2 Nov 2024 10:08:35 +0000 (11:08 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 14 Nov 2024 16:49:24 +0000 (10:49 -0600)
Since commit 348ea878508d ("cmd: hash: fix param count check") the hash
command cannot be used without the optional variable name parameter if
CONFIG_HASH_VERIFY=y. 'hash sha1 $loadaddr $filesize' returns
CMD_RET_USAGE.

The minimum number of arguments is four no matter if verification is
enabled or not.

Fixes: 348ea878508d ("cmd: hash: fix param count check")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Igor Opaniuk <igor.opaniuk@gmail.com>
cmd/hash.c

index 60d482b7f87267418b998e68a02592de1aaa121d..5b40982b098d31f8854b611d5993d944c7a0aefc 100644 (file)
@@ -25,7 +25,7 @@ static int do_hash(struct cmd_tbl *cmdtp, int flag, int argc,
        char *s;
        int flags = HASH_FLAG_ENV;
 
-       if (argc < (HARGS - 1))
+       if (argc < 4)
                return CMD_RET_USAGE;
 
 #if IS_ENABLED(CONFIG_HASH_VERIFY)