blob: 6d1935a06ee1c0826e6f3e3fc28f6b259d7d0499 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# 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#
9# NOTE: this code is built for 32 bit in ELF32 format even though
10# it packages a 64 bit kernel. We do this to simplify the
11# bootloader and increase compatibility with OpenFirmware.
12#
13# To this end we need to define BOOTCC, etc, as the tools
David Gibsonb610b972007-05-29 15:37:12 +100014# needed to build the 32 bit image. That's normally the same
15# compiler for the rest of the kernel, with the -m32 flag added.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016# To make it easier to setup a cross compiler,
17# CROSS32_COMPILE is setup as a prefix just like CROSS_COMPILE
18# in the toplevel makefile.
19
Paul Mackerras2bf11812006-09-27 22:47:03 +100020all: $(obj)/zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
David Gibsonb610b972007-05-29 15:37:12 +100022BOOTCFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
23 -fno-strict-aliasing -Os -msoft-float -pipe \
24 -fomit-frame-pointer -fno-builtin -fPIC -nostdinc \
25 -isystem $(shell $(CROSS32CC) -print-file-name=include)
Olaf Heringdecd3002005-08-08 13:24:38 +100026BOOTAFLAGS := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Niels Kristian Bech Jensenfda7ffd2006-07-02 13:02:27 +020028ifeq ($(call cc-option-yn, -fstack-protector),y)
29BOOTCFLAGS += -fno-stack-protector
30endif
31
Olaf Hering70540362005-10-28 17:46:38 -070032BOOTCFLAGS += -I$(obj) -I$(srctree)/$(obj)
33
Josh Boyer869680c2007-08-20 07:28:05 -050034$(obj)/4xx.o: BOOTCFLAGS += -mcpu=440
David Gibson988519a2007-05-25 13:19:17 +100035$(obj)/ebony.o: BOOTCFLAGS += -mcpu=440
Josh Boyer2e71cc02007-09-24 07:32:15 -050036$(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405
Josh Boyer60e41752007-05-17 04:51:37 +100037
Paul Mackerras2bf11812006-09-27 22:47:03 +100038zlib := inffast.c inflate.c inftrees.c
39zlibheader := inffast.h inffixed.h inflate.h inftrees.h infutil.h
40zliblinuxheader := zlib.h zconf.h zutil.h
41
David Gibsond25a9d62007-05-04 17:14:13 +100042$(addprefix $(obj)/,$(zlib) gunzip_util.o main.o): \
43 $(addprefix $(obj)/,$(zliblinuxheader)) $(addprefix $(obj)/,$(zlibheader))
Paul Mackerras2bf11812006-09-27 22:47:03 +100044
David Gibsoncd197ff2007-03-05 14:24:52 +110045src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \
David Gibsonad9d2712007-03-05 14:24:52 +110046 ns16550.c serial.c simple_alloc.c div64.S util.S \
David Gibson2e601612007-06-13 14:52:54 +100047 gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \
Scott Woodd0f53fa2007-08-21 03:39:57 +100048 4xx.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c bamboo.c \
Scott Woodbbc6fac2007-08-27 13:46:38 -050049 cpm-serial.c stdlib.c mpc52xx-psc.c planetcore.c uartlite.c \
50 fsl-soc.c mpc8xx.c pq2.c
Grant Likely85498ae2007-09-01 03:34:37 +100051src-plat := of.c cuboot-52xx.c cuboot-83xx.c cuboot-85xx.c holly.c \
Geoff Levandbafdb642007-07-04 09:07:18 +100052 cuboot-ebony.c treeboot-ebony.c prpmc2800.c \
Valentine Barshak606d08b2007-08-29 17:38:30 +040053 ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \
Josh Boyer658e8172007-09-15 04:54:11 +100054 cuboot-pq2.c cuboot-sequoia.c treeboot-walnut.c cuboot-bamboo.c
David Gibsoncd197ff2007-03-05 14:24:52 +110055src-boot := $(src-wlib) $(src-plat) empty.c
Paul Mackerras2bf11812006-09-27 22:47:03 +100056
57src-boot := $(addprefix $(obj)/, $(src-boot))
58obj-boot := $(addsuffix .o, $(basename $(src-boot)))
59obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
60obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
61
Olaf Hering70540362005-10-28 17:46:38 -070062quiet_cmd_copy_zlib = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100063 cmd_copy_zlib = sed "s@__attribute_used__@@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
Olaf Hering70540362005-10-28 17:46:38 -070064
65quiet_cmd_copy_zlibheader = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100066 cmd_copy_zlibheader = sed "s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
Olaf Hering70540362005-10-28 17:46:38 -070067# stddef.h for NULL
68quiet_cmd_copy_zliblinuxheader = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100069 cmd_copy_zliblinuxheader = sed "s@<linux/string.h>@\"string.h\"@;s@<linux/kernel.h>@<stddef.h>@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
Olaf Hering70540362005-10-28 17:46:38 -070070
71$(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
72 $(call cmd,copy_zlib)
73
74$(addprefix $(obj)/,$(zlibheader)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
75 $(call cmd,copy_zlibheader)
76
77$(addprefix $(obj)/,$(zliblinuxheader)): $(obj)/%: $(srctree)/include/linux/%
78 $(call cmd,copy_zliblinuxheader)
79
Paul Mackerras2bf11812006-09-27 22:47:03 +100080$(obj)/empty.c:
81 @touch $@
Olaf Hering70540362005-10-28 17:46:38 -070082
Geoff Levandbafdb642007-07-04 09:07:18 +100083$(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds: $(obj)/%: $(srctree)/$(src)/%.S
Paul Mackerras2bf11812006-09-27 22:47:03 +100084 @cp $< $@
85
86clean-files := $(zlib) $(zlibheader) $(zliblinuxheader) \
Geoff Levandbafdb642007-07-04 09:07:18 +100087 empty.c zImage zImage.coff.lds zImage.ps3.lds zImage.lds
Olaf Hering70540362005-10-28 17:46:38 -070088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089quiet_cmd_bootcc = BOOTCC $@
90 cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $<
91
92quiet_cmd_bootas = BOOTAS $@
93 cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $<
94
Paul Mackerras2bf11812006-09-27 22:47:03 +100095quiet_cmd_bootar = BOOTAR $@
Milton Miller235fd832007-03-21 09:02:37 -060096 cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $(filter-out FORCE,$^); mv $@.$$$$ $@
Geoff Levanda24c8482005-08-15 13:59:13 -070097
Milton Miller235fd832007-03-21 09:02:37 -060098$(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 $(call if_changed_dep,bootcc)
Milton Miller235fd832007-03-21 09:02:37 -0600100$(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 $(call if_changed_dep,bootas)
102
Milton Miller235fd832007-03-21 09:02:37 -0600103$(obj)/wrapper.a: $(obj-wlib) FORCE
104 $(call if_changed,bootar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Josh Boyer0cfcccb2006-10-13 10:07:01 -0500106hostprogs-y := addnote addRamDisk hack-coff mktree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Milton Miller235fd832007-03-21 09:02:37 -0600108targets += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a)
David Gibsoncd197ff2007-03-05 14:24:52 +1100109extra-y := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \
Geoff Levandbafdb642007-07-04 09:07:18 +1000110 $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100111
Paul Mackerras2bf11812006-09-27 22:47:03 +1000112wrapper :=$(srctree)/$(src)/wrapper
Milton Miller65b58032007-03-19 14:58:04 -0600113wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree) \
Milton Miller235fd832007-03-21 09:02:37 -0600114 $(wrapper) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Paul Mackerras2bf11812006-09-27 22:47:03 +1000116#############
117# Bits for building various flavours of zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Paul Mackerras2bf11812006-09-27 22:47:03 +1000119ifneq ($(CROSS32_COMPILE),)
Michael Ellermandcf90652006-09-30 11:54:09 +1000120CROSSWRAP := -C "$(CROSS32_COMPILE)"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000121else
122ifneq ($(CROSS_COMPILE),)
Michael Ellermandcf90652006-09-30 11:54:09 +1000123CROSSWRAP := -C "$(CROSS_COMPILE)"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000124endif
125endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Milton Miller9da82a62007-03-21 09:03:23 -0600127# args (to if_changed): 1 = (this rule), 2 = platform, 3 = dts 4=dtb 5=initrd
Paul Mackerras2bf11812006-09-27 22:47:03 +1000128quiet_cmd_wrap = WRAP $@
Milton Miller9da82a62007-03-21 09:03:23 -0600129 cmd_wrap =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) \
130 $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) vmlinux
Paul Mackerras2bf11812006-09-27 22:47:03 +1000131
Geoff Levand020533e2006-10-07 15:33:53 -0700132image-$(CONFIG_PPC_PSERIES) += zImage.pseries
133image-$(CONFIG_PPC_MAPLE) += zImage.pseries
134image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries
Geoff Levand8a8944a2006-12-04 16:11:38 -0800135image-$(CONFIG_PPC_PS3) += zImage.ps3
Ishizaki Kouc347b792007-02-02 16:47:17 +0900136image-$(CONFIG_PPC_CELLEB) += zImage.pseries
Geoff Levand020533e2006-10-07 15:33:53 -0700137image-$(CONFIG_PPC_CHRP) += zImage.chrp
Nicolas DET7839af32006-11-17 17:08:37 +0100138image-$(CONFIG_PPC_EFIKA) += zImage.chrp
Geoff Levand020533e2006-10-07 15:33:53 -0700139image-$(CONFIG_PPC_PMAC) += zImage.pmac
Mark A. Greerb0e80202007-06-01 05:56:15 +1000140image-$(CONFIG_PPC_HOLLY) += zImage.holly
Mark A. Greerc368d922007-05-12 10:58:18 +1000141image-$(CONFIG_PPC_PRPMC2800) += zImage.prpmc2800
Stephen Rothwell0570d4e2007-05-28 16:12:59 +1000142image-$(CONFIG_PPC_ISERIES) += zImage.iseries
Scott Woodac18c672007-05-03 04:00:00 +1000143image-$(CONFIG_DEFAULT_UIMAGE) += uImage
144
145ifneq ($(CONFIG_DEVICE_TREE),"")
Scott Wood0b195812007-08-21 03:40:01 +1000146image-$(CONFIG_PPC_8xx) += cuImage.8xx
Scott Woode5d8d542007-08-21 03:40:02 +1000147image-$(CONFIG_8260) += cuImage.pq2
Grant Likely85498ae2007-09-01 03:34:37 +1000148image-$(CONFIG_PPC_MPC52xx) += cuImage.52xx
David Gibsona6afacb2007-05-01 10:20:20 +1000149image-$(CONFIG_PPC_83xx) += cuImage.83xx
150image-$(CONFIG_PPC_85xx) += cuImage.85xx
David Gibsonf6dfc802007-05-08 14:10:01 +1000151image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony
Josh Boyer658e8172007-09-15 04:54:11 +1000152image-$(CONFIG_BAMBOO) += treeImage.bamboo cuImage.bamboo
Valentine Barshak606d08b2007-08-29 17:38:30 +0400153image-$(CONFIG_SEQUOIA) += cuImage.sequoia
Josh Boyer53261522007-09-07 07:51:44 -0500154image-$(CONFIG_WALNUT) += treeImage.walnut
Scott Woodac18c672007-05-03 04:00:00 +1000155endif
Geoff Levanda24c8482005-08-15 13:59:13 -0700156
Paul Mackerras9216ad82006-01-15 13:00:08 +1100157# For 32-bit powermacs, build the COFF and miboot images
158# as well as the ELF images.
Paul Mackerras2bf11812006-09-27 22:47:03 +1000159ifeq ($(CONFIG_PPC32),y)
160image-$(CONFIG_PPC_PMAC) += zImage.coff zImage.miboot
161endif
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100162
Milton Miller5d7960f2007-03-21 09:03:10 -0600163initrd- := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-))
David Gibsonf6dfc802007-05-08 14:10:01 +1000164initrd-y := $(patsubst zImage%, zImage.initrd%, \
165 $(patsubst treeImage%, treeImage.initrd%, $(image-y)))
Milton Miller9da82a62007-03-21 09:03:23 -0600166initrd-y := $(filter-out $(image-y), $(initrd-y))
Milton Miller235fd832007-03-21 09:02:37 -0600167targets += $(image-y) $(initrd-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Milton Miller9da82a62007-03-21 09:03:23 -0600169$(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz
170
Mark A. Greera00cec42007-06-01 05:55:35 +1000171# If CONFIG_WANT_DEVICE_TREE is set and CONFIG_DEVICE_TREE isn't an
172# empty string, define 'dts' to be path to the dts
173# CONFIG_DEVICE_TREE will have "" around it, make sure to strip them
174ifeq ($(CONFIG_WANT_DEVICE_TREE),y)
175ifneq ($(CONFIG_DEVICE_TREE),"")
176dts = $(if $(shell echo $(CONFIG_DEVICE_TREE) | grep '^/'),\
177 ,$(srctree)/$(src)/dts/)$(CONFIG_DEVICE_TREE:"%"=%)
178endif
179endif
180
Milton Miller9da82a62007-03-21 09:03:23 -0600181# Don't put the ramdisk on the pattern rule; when its missing make will try
182# the pattern rule with less dependencies that also matches (even with the
183# hard dependency listed).
Mark A. Greera00cec42007-06-01 05:55:35 +1000184$(obj)/zImage.initrd.%: vmlinux $(wrapperbits) $(dts)
185 $(call if_changed,wrap,$*,$(dts),,$(obj)/ramdisk.image.gz)
Milton Miller9da82a62007-03-21 09:03:23 -0600186
Mark A. Greera00cec42007-06-01 05:55:35 +1000187$(obj)/zImage.%: vmlinux $(wrapperbits) $(dts)
188 $(call if_changed,wrap,$*,$(dts))
Milton Miller9da82a62007-03-21 09:03:23 -0600189
Tony Breeds4bb09282007-07-04 14:04:31 +1000190# This cannot be in the root of $(src) as the zImage rule always adds a $(obj)
191# prefix
192$(obj)/vmlinux.strip: vmlinux
193 $(STRIP) -s -R .comment $< -o $@
194
Stephen Rothwell0570d4e2007-05-28 16:12:59 +1000195$(obj)/zImage.iseries: vmlinux
196 $(STRIP) -s -R .comment $< -o $@
197
Geoff Levandbafdb642007-07-04 09:07:18 +1000198$(obj)/zImage.ps3: vmlinux $(wrapper) $(wrapperbits) $(srctree)/$(src)/dts/ps3.dts
199 $(STRIP) -s -R .comment $< -o vmlinux.strip
200 $(call cmd,wrap,ps3,$(srctree)/$(src)/dts/ps3.dts,,)
Milton Miller9da82a62007-03-21 09:03:23 -0600201
Geoff Levandbafdb642007-07-04 09:07:18 +1000202$(obj)/zImage.initrd.ps3: vmlinux $(wrapper) $(wrapperbits) $(srctree)/$(src)/dts/ps3.dts $(obj)/ramdisk.image.gz
203 $(call cmd,wrap,ps3,$(srctree)/$(src)/dts/ps3.dts,,$(obj)/ramdisk.image.gz)
Milton Miller9da82a62007-03-21 09:03:23 -0600204
205$(obj)/uImage: vmlinux $(wrapperbits)
206 $(call if_changed,wrap,uboot)
207
David Gibsond25a9d62007-05-04 17:14:13 +1000208$(obj)/cuImage.%: vmlinux $(dts) $(wrapperbits)
David Gibsona6afacb2007-05-01 10:20:20 +1000209 $(call if_changed,wrap,cuboot-$*,$(dts))
Scott Wood0fdd7172007-04-17 09:25:50 +1000210
David Gibsonf6dfc802007-05-08 14:10:01 +1000211$(obj)/treeImage.initrd.%: vmlinux $(dts) $(wrapperbits)
212 $(call if_changed,wrap,treeboot-$*,$(dts),,$(obj)/ramdisk.image.gz)
213
David Gibson6a32d082007-05-15 12:40:23 +1000214$(obj)/treeImage.%: vmlinux $(dts) $(wrapperbits)
215 $(call if_changed,wrap,treeboot-$*,$(dts))
216
Tony Breeds4bb09282007-07-04 14:04:31 +1000217# If there isn't a platform selected then just strip the vmlinux.
218ifeq (,$(image-y))
219image-y := vmlinux.strip
220endif
221
Paul Mackerras2bf11812006-09-27 22:47:03 +1000222$(obj)/zImage: $(addprefix $(obj)/, $(image-y))
223 @rm -f $@; ln $< $@
224$(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y))
225 @rm -f $@; ln $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Akinobu Mita928370c2007-04-10 21:05:31 +1000227install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
Paul Mackerras2bf11812006-09-27 22:47:03 +1000228 sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $<
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100229
Milton Miller1383a342007-03-28 02:21:04 -0600230# anything not in $(targets)
Geoff Levandbafdb642007-07-04 09:07:18 +1000231clean-files += $(image-) $(initrd-) zImage zImage.initrd cuImage.* treeImage.* \
232 otheros.bld
Milton Miller1383a342007-03-28 02:21:04 -0600233
234# clean up files cached by wrapper
235clean-kernel := vmlinux.strip vmlinux.bin
236clean-kernel += $(addsuffix .gz,$(clean-kernel))
237# If not absolute clean-files are relative to $(obj).
238clean-files += $(addprefix $(objtree)/, $(clean-kernel))