Skip to content
Snippets Groups Projects
Commit 7cdebc32 authored by Tim Harvey's avatar Tim Harvey Committed by Tom Rini
Browse files

cmd_ubifs: normalize 'file not found' errors

parent 643aae14
No related branches found
No related tags found
No related merge requests found
...@@ -104,8 +104,10 @@ int do_ubifs_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) ...@@ -104,8 +104,10 @@ int do_ubifs_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
debug("Using filename %s\n", filename); debug("Using filename %s\n", filename);
ret = ubifs_ls(filename); ret = ubifs_ls(filename);
if (ret) if (ret) {
printf("%s not found!\n", filename); printf("** File not found %s **\n", filename);
ret = CMD_RET_FAILURE;
}
return ret; return ret;
} }
...@@ -140,8 +142,10 @@ int do_ubifs_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) ...@@ -140,8 +142,10 @@ int do_ubifs_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
debug("Loading file '%s' to address 0x%08x (size %d)\n", filename, addr, size); debug("Loading file '%s' to address 0x%08x (size %d)\n", filename, addr, size);
ret = ubifs_load(filename, addr, size); ret = ubifs_load(filename, addr, size);
if (ret) if (ret) {
printf("%s not found!\n", filename); printf("** File not found %s **\n", filename);
ret = CMD_RET_FAILURE;
}
return ret; return ret;
} }
......
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