H56413
s 00016/00000/00000
d D 1.1 02/03/13 20:31:04 patch 2 1
cC
cF1
cK23257
cO-rw-rw-r--
e
s 00000/00000/00000
d D 1.0 02/03/13 20:31:04 patch 1 0
c BitKeeper file /home/marcelo/bk/linux-2.4/arch/ppc/boot/utils/mkimage.wrapper
cBtorvalds@athlon.transmeta.com|ChangeSet|20020205173056|16047|c1d11a41ed024864
cHplucky.distro.conectiva
cK62933
cParch/ppc/boot/utils/mkimage.wrapper
cR788151aa6df8c6c5
cV4
cX0x821
cZ-03:00
e
u
U
f e 0
f x 0x821
t
T
I 2
#!/bin/bash

#
# Build PPCBoot image when `mkimage' tool is available.
#

MKIMAGE=$(type -path mkimage)

if [ -z "${MKIMAGE}" ]; then
	# Doesn't exist
	echo '"mkimage" command not found - PPCBoot images will not be built' >&2
	exit 0;
fi

# Call "mkimage" to create PPCBoot image
${MKIMAGE} "$@"
E 2
I 1
E 1
