]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix: watchdog timed out, if using sha1 command
authorJens Scharsig <esw@bus-elektronik.de>
Mon, 18 Jul 2011 12:39:07 +0000 (14:39 +0200)
committerWolfgang Denk <wd@denx.de>
Tue, 26 Jul 2011 12:33:10 +0000 (14:33 +0200)
* Fix: if using sha1 command watchdog timed out
* change function call sha1_csum(..) to the watchdog-safe variant
  sha1_csum_wd(..) to support watchdog reset

Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
common/cmd_sha1sum.c

index bb3cff01f0cca72c91d16cdc2b4841e6fd6bfb65..2b2dd8b45a8d6e3b403aef80ffcd814a5658b05b 100644 (file)
@@ -37,7 +37,7 @@ static int do_sha1sum(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        addr = simple_strtoul(argv[1], NULL, 16);
        len = simple_strtoul(argv[2], NULL, 16);
 
-       sha1_csum((unsigned char *) addr, len, output);
+       sha1_csum_wd((unsigned char *) addr, len, output, CHUNKSZ_SHA1);
        printf("SHA1 for %08lx ... %08lx ==> ", addr, addr + len - 1);
        for (i = 0; i < 20; i++)
                printf("%02x", output[i]);