changed Makefile and profiles, added patches for kernel 2.6.24
[openwrt.git] / target / linux / s3c24xx / patches-2.6.26 / 0044-fail-unless-uimage.patch.patch
1 From 10042752e49358e1ef5ccfbb4e1c27875f3f43c5 Mon Sep 17 00:00:00 2001
2 From: mokopatches <mokopatches@openmoko.org>
3 Date: Fri, 25 Jul 2008 22:21:22 +0100
4 Subject: [PATCH] fail-unless-uimage.patch
5  Fail the build noisily if "mkimage" can't be found, e.g., if we forgot to add
6  the u-boot directory to PATH.
7
8 ---
9  scripts/mkuboot.sh |    2 +-
10  1 files changed, 1 insertions(+), 1 deletions(-)
11
12 diff --git a/scripts/mkuboot.sh b/scripts/mkuboot.sh
13 index 2e3d3cd..446739c 100755
14 --- a/scripts/mkuboot.sh
15 +++ b/scripts/mkuboot.sh
16 @@ -11,7 +11,7 @@ if [ -z "${MKIMAGE}" ]; then
17         if [ -z "${MKIMAGE}" ]; then
18                 # Doesn't exist
19                 echo '"mkimage" command not found - U-Boot images will not be built' >&2
20 -               exit 0;
21 +               exit 1;
22         fi
23  fi
24  
25 -- 
26 1.5.6.3
27