Skip to content
Snippets Groups Projects
Commit 65d8bc94 authored by Scott Wood's avatar Scott Wood
Browse files

NAND: Have nboot accept .e and .i as legacy no-ops.


This was intended to happen before, but a trivial bug prevented it.

Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
parent 09875055
No related branches found
No related tags found
No related merge requests found
......@@ -502,7 +502,7 @@ static int nand_load_image(cmd_tbl_t *cmdtp, nand_info_t *nand,
s = strchr(cmd, '.');
if (s != NULL &&
(strcmp(s, ".jffs2") && !strcmp(s, ".e") && !strcmp(s, ".i"))) {
(strcmp(s, ".jffs2") && strcmp(s, ".e") && strcmp(s, ".i"))) {
printf("Unknown nand load suffix '%s'\n", s);
show_boot_progress(-53);
return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment