Files
linux-apfs/scripts/mkuboot.sh
T

20 lines
379 B
Bash
Raw Normal View History

2005-04-16 15:20:36 -07:00
#!/bin/bash
#
# Build U-Boot image when `mkimage' tool is available.
#
MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage")
2005-04-16 15:20:36 -07:00
if [ -z "${MKIMAGE}" ]; then
2007-02-14 00:32:54 -08:00
MKIMAGE=$(type -path mkimage)
if [ -z "${MKIMAGE}" ]; then
# Doesn't exist
echo '"mkimage" command not found - U-Boot images will not be built' >&2
2010-12-17 17:19:17 +01:00
exit 1;
2007-02-14 00:32:54 -08:00
fi
2005-04-16 15:20:36 -07:00
fi
# Call "mkimage" to create U-Boot image
${MKIMAGE} "$@"