]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix defines needed to enable command sha1sum
authorAlexander Holler <holler@ahsoftware.de>
Tue, 18 Jan 2011 08:48:08 +0000 (09:48 +0100)
committerWolfgang Denk <wd@denx.de>
Wed, 19 Jan 2011 08:39:10 +0000 (09:39 +0100)
Documented is CONFIG_CMD_SHA1, through confusion in the source
CONFIG_CMD_SHA1 and CONFIG_CMD_SHA1SUM has to be used to enable
sha1sum.

Fix both, the documentation and the source, so that only
CONFIG_CMD_SHA1SUM is needed to enable the command sha1sum.

Signed-off-by: Alexander Holler <holler@ahsoftware.de>
README
common/cmd_mem.c

diff --git a/README b/README
index 8e1a9ff2c6f3d340d49a560d098353e0905c697a..755d17cc34b12d5209c4a182d652c0075403acc2 100644 (file)
--- a/README
+++ b/README
@@ -675,7 +675,7 @@ The following options need to be configured:
                                          (requires CONFIG_CMD_I2C)
                CONFIG_CMD_SETGETDCR      Support for DCR Register access
                                          (4xx only)
-               CONFIG_CMD_SHA1           print sha1 memory digest
+               CONFIG_CMD_SHA1SUM        print sha1 memory digest
                                          (requires CONFIG_CMD_MEMORY)
                CONFIG_CMD_SOURCE         "source" command Support
                CONFIG_CMD_SPI          * SPI serial bus support
index f03233cee8b8cbcc0b8e86dc8ac3c1402832ec86..ccf420a13279de51d215c487d11ae169bd12a3db 100644 (file)
@@ -1184,7 +1184,7 @@ int do_md5sum(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 }
 #endif
 
-#ifdef CONFIG_CMD_SHA1
+#ifdef CONFIG_CMD_SHA1SUM
 int do_sha1sum(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 {
        unsigned long addr, len;
@@ -1343,7 +1343,7 @@ U_BOOT_CMD(
        "compute SHA1 message digest",
        "address count"
 );
-#endif /* CONFIG_CMD_SHA1 */
+#endif /* CONFIG_CMD_SHA1SUM */
 
 #ifdef CONFIG_CMD_UNZIP
 U_BOOT_CMD(