Makefile (b09c16440eb39c12cc91aea5b572c753a5567d57) Makefile (0dde1a1df9ab0615ed08558fb7144e7739e9f565)
1# Makefile for making ELF bootable images for booting on CHRP
2# using Open Firmware.
3#
4# Geert Uytterhoeven September 1997
5#
6# Based on coffboot by Paul Mackerras
7# Simplified for ppc64 by Todd Inglett
8#

--- 48 unchanged lines hidden (view full) ---

57 4xx.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c bamboo.c \
58 cpm-serial.c stdlib.c mpc52xx-psc.c planetcore.c uartlite.c \
59 fsl-soc.c mpc8xx.c pq2.c
60src-plat := of.c cuboot-52xx.c cuboot-83xx.c cuboot-85xx.c holly.c \
61 cuboot-ebony.c treeboot-ebony.c prpmc2800.c \
62 ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \
63 cuboot-pq2.c cuboot-sequoia.c treeboot-walnut.c cuboot-bamboo.c \
64 fixed-head.S ep88xc.c cuboot-hpc2.c ep405.c cuboot-taishan.c \
1# Makefile for making ELF bootable images for booting on CHRP
2# using Open Firmware.
3#
4# Geert Uytterhoeven September 1997
5#
6# Based on coffboot by Paul Mackerras
7# Simplified for ppc64 by Todd Inglett
8#

--- 48 unchanged lines hidden (view full) ---

57 4xx.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c bamboo.c \
58 cpm-serial.c stdlib.c mpc52xx-psc.c planetcore.c uartlite.c \
59 fsl-soc.c mpc8xx.c pq2.c
60src-plat := of.c cuboot-52xx.c cuboot-83xx.c cuboot-85xx.c holly.c \
61 cuboot-ebony.c treeboot-ebony.c prpmc2800.c \
62 ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \
63 cuboot-pq2.c cuboot-sequoia.c treeboot-walnut.c cuboot-bamboo.c \
64 fixed-head.S ep88xc.c cuboot-hpc2.c ep405.c cuboot-taishan.c \
65 cuboot-katmai.c cuboot-rainier.c redboot-8xx.c
65 cuboot-katmai.c cuboot-rainier.c redboot-8xx.c ep8248e.c
66src-boot := $(src-wlib) $(src-plat) empty.c
67
68src-boot := $(addprefix $(obj)/, $(src-boot))
69obj-boot := $(addsuffix .o, $(basename $(src-boot)))
70obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
71obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
72
73quiet_cmd_copy_zlib = COPY $@

--- 116 unchanged lines hidden (view full) ---

190image-$(CONFIG_PPC_ISERIES) += zImage.iseries
191image-$(CONFIG_DEFAULT_UIMAGE) += uImage
192
193ifneq ($(CONFIG_DEVICE_TREE),"")
194image-$(CONFIG_PPC_8xx) += cuImage.8xx
195image-$(CONFIG_PPC_EP88XC) += zImage.ep88xc
196image-$(CONFIG_EP405) += zImage.ep405
197image-$(CONFIG_8260) += cuImage.pq2
66src-boot := $(src-wlib) $(src-plat) empty.c
67
68src-boot := $(addprefix $(obj)/, $(src-boot))
69obj-boot := $(addsuffix .o, $(basename $(src-boot)))
70obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
71obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
72
73quiet_cmd_copy_zlib = COPY $@

--- 116 unchanged lines hidden (view full) ---

190image-$(CONFIG_PPC_ISERIES) += zImage.iseries
191image-$(CONFIG_DEFAULT_UIMAGE) += uImage
192
193ifneq ($(CONFIG_DEVICE_TREE),"")
194image-$(CONFIG_PPC_8xx) += cuImage.8xx
195image-$(CONFIG_PPC_EP88XC) += zImage.ep88xc
196image-$(CONFIG_EP405) += zImage.ep405
197image-$(CONFIG_8260) += cuImage.pq2
198image-$(CONFIG_EP8248E) += zImage.ep8248e
198image-$(CONFIG_PPC_MPC52xx) += cuImage.52xx
199image-$(CONFIG_PPC_83xx) += cuImage.83xx
200image-$(CONFIG_PPC_85xx) += cuImage.85xx
201image-$(CONFIG_MPC7448HPC2) += cuImage.hpc2
202image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony
203image-$(CONFIG_BAMBOO) += treeImage.bamboo cuImage.bamboo
204image-$(CONFIG_SEQUOIA) += cuImage.sequoia
205image-$(CONFIG_RAINIER) += cuImage.rainier

--- 139 unchanged lines hidden ---
199image-$(CONFIG_PPC_MPC52xx) += cuImage.52xx
200image-$(CONFIG_PPC_83xx) += cuImage.83xx
201image-$(CONFIG_PPC_85xx) += cuImage.85xx
202image-$(CONFIG_MPC7448HPC2) += cuImage.hpc2
203image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony
204image-$(CONFIG_BAMBOO) += treeImage.bamboo cuImage.bamboo
205image-$(CONFIG_SEQUOIA) += cuImage.sequoia
206image-$(CONFIG_RAINIER) += cuImage.rainier

--- 139 unchanged lines hidden ---