1 --- a/arch/powerpc/boot/wrapper
2 +++ b/arch/powerpc/boot/wrapper
3 @@ -43,6 +43,9 @@ gzip=.gz
4 # cross-compilation prefix
7 +# mkimage wrapper script
8 +MKIMAGE=$srctree/scripts/mkuboot.sh
10 # directory for object and other files used by this script
11 object=arch/powerpc/boot
13 @@ -262,7 +265,7 @@ membase=`${CROSS}objdump -p "$kernel" |
17 - mkimage -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
18 + ${MKIMAGE} -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
19 $uboot_version -d "$vmz" "$ofile"
20 if [ -z "$cacheit" ]; then
22 @@ -322,7 +325,7 @@ coff)
26 - mkimage -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
27 + ${MKIMAGE} -A ppc -O linux -T kernel -C gzip -a "$base" -e "$entry" \
28 $uboot_version -d "$ofile".gz "$ofile"