https://github.com/torvalds/linux
Raw File
Tip revision: c13dcf9f2d6f5f06ef1bf79ec456df614c5e058b authored by Linus Torvalds on 24 August 2015, 03:52:59 UTC
Linux 4.2-rc8
Tip revision: c13dcf9
mkuboot.sh
#!/bin/bash

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

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

if [ -z "${MKIMAGE}" ]; then
	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 1;
	fi
fi

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