https://github.com/torvalds/linux
Revision 8b97b21e0f4f59801d05a5c536417f04ecfb5603 authored by Linus Torvalds on 16 June 2011, 22:02:20 UTC, committed by Linus Torvalds on 16 June 2011, 22:02:20 UTC
* git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/linux-2.6-nsfd:
  proc: Fix Oops on stat of /proc/<zombie pid>/ns/net
2 parent s 99a15e2 + 7939253
Raw File
Tip revision: 8b97b21e0f4f59801d05a5c536417f04ecfb5603 authored by Linus Torvalds on 16 June 2011, 22:02:20 UTC
Merge git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/linux-2.6-nsfd
Tip revision: 8b97b21
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 1;
	fi
fi

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