Messages in this thread Patch in this message |  | | Date | Thu, 25 Aug 2011 13:53:45 +0200 (CEST) | | From | Jiri Kosina <> | | Subject | [PATCH] Revert "mkuboot.sh: Fail if mkimage is missing" |
| |
This reverts commit bc91c9f3.
It causes the whole build to fail when mkimage is not found. This doesn't seem right, as the failure is not fatal for the rest of the build.
Signed-off-by: Jiri Kosina <jkosina@suse.cz> --- scripts/mkuboot.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/mkuboot.sh b/scripts/mkuboot.sh index 446739c..2e3d3cd 100755 --- a/scripts/mkuboot.sh +++ b/scripts/mkuboot.sh @@ -11,7 +11,7 @@ if [ -z "${MKIMAGE}" ]; then if [ -z "${MKIMAGE}" ]; then # Doesn't exist echo '"mkimage" command not found - U-Boot images will not be built' >&2 - exit 1; + exit 0; fi fi -- 1.7.5.4
|  |