https://github.com/torvalds/linux
Raw File
Tip revision: 80c218812786f619c9a1ce50d0e7c32c7afde4de authored by Linus Torvalds on 08 November 2006, 02:24:20 UTC
Linux 2.6.19-rc5
Tip revision: 80c2188
mkuboot.sh
#!/bin/bash

#
# Build U-Boot image when `mkimage' tool is available.
#

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

# Call "mkimage" to create U-Boot image
${MKIMAGE} "$@"
back to top