mkuboot.sh 414 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. # SPDX-License-Identifier: GPL-2.0
  3. #
  4. # Build U-Boot image when `mkimage' tool is available.
  5. #
  6. MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage")
  7. if [ -z "${MKIMAGE}" ]; then
  8. MKIMAGE=$(type -path mkimage)
  9. if [ -z "${MKIMAGE}" ]; then
  10. # Doesn't exist
  11. echo '"mkimage" command not found - U-Boot images will not be built' >&2
  12. exit 1;
  13. fi
  14. fi
  15. # Call "mkimage" to create U-Boot image
  16. ${MKIMAGE} "$@"