Skip to content
Snippets Groups Projects
Select Git revision
  • e7c4782f92fc4b83d953ce53f77f05ae65dcd773
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

ip32-setup.c

Blame
  • mkuboot.sh 414 B
    #!/bin/bash
    # SPDX-License-Identifier: GPL-2.0
    
    #
    # 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} "$@"