#!/bin/bash # # Build U-Boot image when `mkimage' tool is available. # setglobal MKIMAGE = $[type -path "$(CROSS_COMPILE)mkimage] if test -z $(MKIMAGE) { setglobal MKIMAGE = $[type -path mkimage] if test -z $(MKIMAGE) { # Doesn't exist echo '"mkimage" command not found - U-Boot images will not be built' > !2 exit 1; } } # Call "mkimage" to create U-Boot image $(MKIMAGE) @Argv