Blame view

scripts/mkuboot.sh 379 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  #!/bin/bash
  
  #
  # Build U-Boot image when `mkimage' tool is available.
  #
f03e1666d   Uwe Kleine-König   kbuild/mkuboot.sh...
6
  MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage")
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
  
  if [ -z "${MKIMAGE}" ]; then
8c7e4498a   Mike Frysinger   [PATCH] search a ...
9
10
11
12
  	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 ...
13
  		exit 1;
8c7e4498a   Mike Frysinger   [PATCH] search a ...
14
  	fi
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
  fi
  
  # Call "mkimage" to create U-Boot image
  ${MKIMAGE} "$@"