common/armflash: add command to check if image exists
authorRyan Harkin <ryan.harkin@linaro.org>
Fri, 9 Oct 2015 16:18:04 +0000 (17:18 +0100)
committerTom Rini <trini@konsulko.com>
Sun, 11 Oct 2015 21:12:04 +0000 (17:12 -0400)
commit1a9717fb30c5cbb70dcc5d53791670967dfe3487
tree5d37e9de161b7e56a89eeace53b515a0e6245364
parent74e264b49fc5aa20ef6f2c9e00560f81c08c667c
common/armflash: add command to check if image exists

Add a command to the ARM flash support to check if an image exists or
not.

If the image is found, it will return CMD_RET_SUCCESS, else
CMD_RET_FAILURE.  This allows hush scripts to conditionally load images.

A simple example:

if afs exists ${kernel_name}; then echo found; else echo \
not found; fi

Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
common/cmd_armflash.c