diff options
Diffstat (limited to 'arch/powerpc/boot/Makefile')
-rw-r--r-- | arch/powerpc/boot/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index aac1406ccba5..8fc6d72849ae 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -68,7 +68,8 @@ src-plat := of.c cuboot-52xx.c cuboot-824x.c cuboot-83xx.c cuboot-85xx.c holly.c | |||
68 | fixed-head.S ep88xc.c ep405.c cuboot-c2k.c \ | 68 | fixed-head.S ep88xc.c ep405.c cuboot-c2k.c \ |
69 | cuboot-katmai.c cuboot-rainier.c redboot-8xx.c ep8248e.c \ | 69 | cuboot-katmai.c cuboot-rainier.c redboot-8xx.c ep8248e.c \ |
70 | cuboot-warp.c cuboot-85xx-cpm2.c cuboot-yosemite.c simpleboot.c \ | 70 | cuboot-warp.c cuboot-85xx-cpm2.c cuboot-yosemite.c simpleboot.c \ |
71 | virtex405-head.S virtex.c redboot-83xx.c cuboot-sam440ep.c | 71 | virtex405-head.S virtex.c redboot-83xx.c cuboot-sam440ep.c \ |
72 | cuboot-acadia.c | ||
72 | src-boot := $(src-wlib) $(src-plat) empty.c | 73 | src-boot := $(src-wlib) $(src-plat) empty.c |
73 | 74 | ||
74 | src-boot := $(addprefix $(obj)/, $(src-boot)) | 75 | src-boot := $(addprefix $(obj)/, $(src-boot)) |
@@ -211,6 +212,7 @@ image-$(CONFIG_DEFAULT_UIMAGE) += uImage | |||
211 | # Board ports in arch/powerpc/platform/40x/Kconfig | 212 | # Board ports in arch/powerpc/platform/40x/Kconfig |
212 | image-$(CONFIG_EP405) += dtbImage.ep405 | 213 | image-$(CONFIG_EP405) += dtbImage.ep405 |
213 | image-$(CONFIG_WALNUT) += treeImage.walnut | 214 | image-$(CONFIG_WALNUT) += treeImage.walnut |
215 | image-$(CONFIG_ACADIA) += cuImage.acadia | ||
214 | 216 | ||
215 | # Board ports in arch/powerpc/platform/44x/Kconfig | 217 | # Board ports in arch/powerpc/platform/44x/Kconfig |
216 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony | 218 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony |
@@ -319,6 +321,9 @@ $(obj)/zImage.iseries: vmlinux | |||
319 | $(obj)/uImage: vmlinux $(wrapperbits) | 321 | $(obj)/uImage: vmlinux $(wrapperbits) |
320 | $(call if_changed,wrap,uboot) | 322 | $(call if_changed,wrap,uboot) |
321 | 323 | ||
324 | $(obj)/cuImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) | ||
325 | $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) | ||
326 | |||
322 | $(obj)/cuImage.%: vmlinux $(obj)/%.dtb $(wrapperbits) | 327 | $(obj)/cuImage.%: vmlinux $(obj)/%.dtb $(wrapperbits) |
323 | $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb) | 328 | $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb) |
324 | 329 | ||