diff options
author | Simon Glass <sjg@chromium.org> | 2014-02-26 15:59:15 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-04 12:15:28 -0500 |
commit | 16ff9902468088a0a559b3db95421355ef60d366 (patch) | |
tree | 4618524681dff751b2860c3d6b8031b4307b7f1c /common/command.c | |
parent | 714a5621c2df0b1cfce525b9add071fc9bfd726b (diff) | |
download | u-boot-imx-16ff9902468088a0a559b3db95421355ef60d366.zip u-boot-imx-16ff9902468088a0a559b3db95421355ef60d366.tar.gz u-boot-imx-16ff9902468088a0a559b3db95421355ef60d366.tar.bz2 |
Add cmd_process_error() to report and process errors
U-Boot now uses errors defined in include/errno.h which are negative
integers. Commands which fail need to report the error and return 1
to indicate failure. Add this functionality in cmd_process_error().
For now this merely reports the error number. It would be possible
also to produce a helpful error message by storing the error strings
in U-Boot.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/command.c')
-rw-r--r-- | common/command.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/common/command.c b/common/command.c index 597ab4c..26c37f2 100644 --- a/common/command.c +++ b/common/command.c @@ -538,3 +538,13 @@ enum command_ret_t cmd_process(int flag, int argc, char * const argv[], rc = cmd_usage(cmdtp); return rc; } + +int cmd_process_error(cmd_tbl_t *cmdtp, int err) +{ + if (err) { + printf("Command '%s' failed: Error %d\n", cmdtp->name, err); + return 1; + } + + return 0; +} |