]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
cmd_nvedit: Make 'env import -c' require size parameter
authorTom Rini <trini@ti.com>
Tue, 4 Mar 2014 20:52:35 +0000 (15:52 -0500)
committerTom Rini <trini@ti.com>
Fri, 7 Mar 2014 15:59:06 +0000 (10:59 -0500)
When importing a checksummed area we need to be told how big the area in
question is so that we know that will match the size of the area which
the checksum is generated against.

Reported-by: Pierre AUBERT <p.aubert@staubli.com>
Signed-off-by: Tom Rini <trini@ti.com>
common/cmd_nvedit.c

index 5bcc324675eb7535c9e103cd473134122b83e376..c53601cf7457e89475885ab4f1f57870487129be 100644 (file)
@@ -1008,6 +1008,9 @@ static int do_env_import(cmd_tbl_t *cmdtp, int flag,
 
        if (argc == 2) {
                size = simple_strtoul(argv[1], NULL, 16);
+       } else if (argc == 1 && chk) {
+               puts("## Error: external checksum format must pass size\n");
+               return CMD_RET_FAILURE;
        } else {
                char *s = addr;