diff options
Diffstat (limited to 'arch/powerpc/boot/Makefile')
-rw-r--r-- | arch/powerpc/boot/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 72ee8c1fba48..15986e70799c 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -45,6 +45,7 @@ $(obj)/cuboot-katmai.o: BOOTCFLAGS += -mcpu=405 | |||
45 | $(obj)/cuboot-acadia.o: BOOTCFLAGS += -mcpu=405 | 45 | $(obj)/cuboot-acadia.o: BOOTCFLAGS += -mcpu=405 |
46 | $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405 | 46 | $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405 |
47 | $(obj)/treeboot-iss4xx.o: BOOTCFLAGS += -mcpu=405 | 47 | $(obj)/treeboot-iss4xx.o: BOOTCFLAGS += -mcpu=405 |
48 | $(obj)/treeboot-currituck.o: BOOTCFLAGS += -mcpu=405 | ||
48 | $(obj)/virtex405-head.o: BOOTAFLAGS += -mcpu=405 | 49 | $(obj)/virtex405-head.o: BOOTAFLAGS += -mcpu=405 |
49 | 50 | ||
50 | 51 | ||
@@ -79,7 +80,8 @@ src-plat := of.c cuboot-52xx.c cuboot-824x.c cuboot-83xx.c cuboot-85xx.c holly.c | |||
79 | cuboot-warp.c cuboot-85xx-cpm2.c cuboot-yosemite.c simpleboot.c \ | 80 | cuboot-warp.c cuboot-85xx-cpm2.c cuboot-yosemite.c simpleboot.c \ |
80 | virtex405-head.S virtex.c redboot-83xx.c cuboot-sam440ep.c \ | 81 | virtex405-head.S virtex.c redboot-83xx.c cuboot-sam440ep.c \ |
81 | cuboot-acadia.c cuboot-amigaone.c cuboot-kilauea.c \ | 82 | cuboot-acadia.c cuboot-amigaone.c cuboot-kilauea.c \ |
82 | gamecube-head.S gamecube.c wii-head.S wii.c treeboot-iss4xx.c | 83 | gamecube-head.S gamecube.c wii-head.S wii.c treeboot-iss4xx.c \ |
84 | treeboot-currituck.c | ||
83 | src-boot := $(src-wlib) $(src-plat) empty.c | 85 | src-boot := $(src-wlib) $(src-plat) empty.c |
84 | 86 | ||
85 | src-boot := $(addprefix $(obj)/, $(src-boot)) | 87 | src-boot := $(addprefix $(obj)/, $(src-boot)) |
@@ -199,6 +201,7 @@ image-$(CONFIG_EP405) += dtbImage.ep405 | |||
199 | image-$(CONFIG_HOTFOOT) += cuImage.hotfoot | 201 | image-$(CONFIG_HOTFOOT) += cuImage.hotfoot |
200 | image-$(CONFIG_WALNUT) += treeImage.walnut | 202 | image-$(CONFIG_WALNUT) += treeImage.walnut |
201 | image-$(CONFIG_ACADIA) += cuImage.acadia | 203 | image-$(CONFIG_ACADIA) += cuImage.acadia |
204 | image-$(CONFIG_OBS600) += uImage.obs600 | ||
202 | 205 | ||
203 | # Board ports in arch/powerpc/platform/44x/Kconfig | 206 | # Board ports in arch/powerpc/platform/44x/Kconfig |
204 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony | 207 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony |
@@ -212,6 +215,7 @@ image-$(CONFIG_WARP) += cuImage.warp | |||
212 | image-$(CONFIG_YOSEMITE) += cuImage.yosemite | 215 | image-$(CONFIG_YOSEMITE) += cuImage.yosemite |
213 | image-$(CONFIG_ISS4xx) += treeImage.iss4xx \ | 216 | image-$(CONFIG_ISS4xx) += treeImage.iss4xx \ |
214 | treeImage.iss4xx-mpic | 217 | treeImage.iss4xx-mpic |
218 | image-$(CONFIG_CURRITUCK) += treeImage.currituck | ||
215 | 219 | ||
216 | # Board ports in arch/powerpc/platform/8xx/Kconfig | 220 | # Board ports in arch/powerpc/platform/8xx/Kconfig |
217 | image-$(CONFIG_MPC86XADS) += cuImage.mpc866ads | 221 | image-$(CONFIG_MPC86XADS) += cuImage.mpc866ads |
@@ -316,6 +320,12 @@ $(obj)/zImage.iseries: vmlinux | |||
316 | $(obj)/uImage: vmlinux $(wrapperbits) | 320 | $(obj)/uImage: vmlinux $(wrapperbits) |
317 | $(call if_changed,wrap,uboot) | 321 | $(call if_changed,wrap,uboot) |
318 | 322 | ||
323 | $(obj)/uImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) | ||
324 | $(call if_changed,wrap,uboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) | ||
325 | |||
326 | $(obj)/uImage.%: vmlinux $(obj)/%.dtb $(wrapperbits) | ||
327 | $(call if_changed,wrap,uboot-$*,,$(obj)/$*.dtb) | ||
328 | |||
319 | $(obj)/cuImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) | 329 | $(obj)/cuImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) |
320 | $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) | 330 | $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) |
321 | 331 | ||