https://github.com/torvalds/linux
Revision a814917058a63978ecd9fbefe4f88e3fc1576a79 authored by Russell King on 27 August 2008, 13:29:40 UTC, committed by Russell King on 27 August 2008, 15:15:23 UTC
Taken from omap 97b705ad835f1481270c4b67b402d6e37fa8ad15:
  ARM: OMAP: Misc compile fixes after syncing with mainline

  Also fix 2430 smc91x to use IRQ_LOWLEVEL.

  Signed-off-by: Tony Lindgren <tony@atomide.com>

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
1 parent 9c2d015
Raw File
Tip revision: a814917058a63978ecd9fbefe4f88e3fc1576a79 authored by Russell King on 27 August 2008, 13:29:40 UTC
[ARM] OMAP: Fix 2430 SMC91x ethernet IRQ
Tip revision: a814917
mkuboot.sh
#!/bin/bash

#
# 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 0;
	fi
fi

# Call "mkimage" to create U-Boot image
${MKIMAGE} "$@"
back to top