Blame view

scripts/mkuboot.sh 414 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  #!/bin/bash
b24413180   Greg Kroah-Hartman   License cleanup: ...
2
  # SPDX-License-Identifier: GPL-2.0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
6
  
  #
  # Build U-Boot image when `mkimage' tool is available.
  #
f03e1666d   Uwe Kleine-König   kbuild/mkuboot.sh...
7
  MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage")
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
  
  if [ -z "${MKIMAGE}" ]; then
8c7e4498a   Mike Frysinger   [PATCH] search a ...
10
11
12
13
  	MKIMAGE=$(type -path mkimage)
  	if [ -z "${MKIMAGE}" ]; then
  		# Doesn't exist
  		echo '"mkimage" command not found - U-Boot images will not be built' >&2
bc91c9f31   Roland Stigge   mkuboot.sh: Fail ...
14
  		exit 1;
8c7e4498a   Mike Frysinger   [PATCH] search a ...
15
  	fi
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
19
  fi
  
  # Call "mkimage" to create U-Boot image
  ${MKIMAGE} "$@"