[POWERPC] Fix make rules for treeImage.initrd

At present attempting to build treeImage.initrd.* boot images will
fail, because make will select the treeImage.% rule which also matches
instead of the correct and more specific treeImage.initrd.% rule.
This patch corrects the problem by listing the more specific rule
first.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>

authored by David Gibson and committed by Paul Mackerras 6a32d085 d16f1b64

+3 -3
+3 -3
arch/powerpc/boot/Makefile
··· 204 204 $(obj)/cuImage.%: vmlinux $(dts) $(wrapperbits) 205 205 $(call if_changed,wrap,cuboot-$*,$(dts)) 206 206 207 - $(obj)/treeImage.%: vmlinux $(dts) $(wrapperbits) 208 - $(call if_changed,wrap,treeboot-$*,$(dts)) 209 - 210 207 $(obj)/treeImage.initrd.%: vmlinux $(dts) $(wrapperbits) 211 208 $(call if_changed,wrap,treeboot-$*,$(dts),,$(obj)/ramdisk.image.gz) 209 + 210 + $(obj)/treeImage.%: vmlinux $(dts) $(wrapperbits) 211 + $(call if_changed,wrap,treeboot-$*,$(dts)) 212 212 213 213 $(obj)/zImage: $(addprefix $(obj)/, $(image-y)) 214 214 @rm -f $@; ln $< $@