Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48308
b: refs/heads/master
c: 8c7e449
h: refs/heads/master
v: v3
  • Loading branch information
Mike Frysinger authored and Linus Torvalds committed Feb 14, 2007
1 parent a780e9c commit 1a4dc54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b7de8e7e3c7b79a72c20c7fd58bd65df3d146b13
refs/heads/master: 8c7e4498adfdb4aea5a0d056590ec18d099ba062
11 changes: 7 additions & 4 deletions trunk/scripts/mkuboot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
# Build U-Boot image when `mkimage' tool is available.
#

MKIMAGE=$(type -path mkimage)
MKIMAGE=$(type -path ${CROSS_COMPILE}mkimage)

if [ -z "${MKIMAGE}" ]; then
# Doesn't exist
echo '"mkimage" command not found - U-Boot images will not be built' >&2
exit 0;
MKIMAGE=$(type -path mkimage)
if [ -z "${MKIMAGE}" ]; then
# Doesn't exist
echo '"mkimage" command not found - U-Boot images will not be built' >&2
exit 0;
fi
fi

# Call "mkimage" to create U-Boot image
Expand Down

0 comments on commit 1a4dc54

Please sign in to comment.