blob: cffef147e042a4be6af6a72a0315b611e6be6f87 [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 Boyer60e41752007-05-17 04:51:37 +100036
Paul Mackerras2bf11812006-09-27 22:47:03 +100037zlib := inffast.c inflate.c inftrees.c
38zlibheader := inffast.h inffixed.h inflate.h inftrees.h infutil.h
39zliblinuxheader := zlib.h zconf.h zutil.h
40
David Gibsond25a9d62007-05-04 17:14:13 +100041$(addprefix $(obj)/,$(zlib) gunzip_util.o main.o): \
42 $(addprefix $(obj)/,$(zliblinuxheader)) $(addprefix $(obj)/,$(zlibheader))
Paul Mackerras2bf11812006-09-27 22:47:03 +100043
David Gibsoncd197ff2007-03-05 14:24:52 +110044src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \
David Gibsonad9d2712007-03-05 14:24:52 +110045 ns16550.c serial.c simple_alloc.c div64.S util.S \
David Gibson2e601612007-06-13 14:52:54 +100046 gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \
Scott Woodd0f53fa2007-08-21 03:39:57 +100047 4xx.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c bamboo.c \
Scott Wood9de78272007-09-06 05:21:10 +100048 cpm-serial.c stdlib.c
David Gibsonf6dfc802007-05-08 14:10:01 +100049src-plat := of.c cuboot-83xx.c cuboot-85xx.c holly.c \
Geoff Levandbafdb642007-07-04 09:07:18 +100050 cuboot-ebony.c treeboot-ebony.c prpmc2800.c \
Valentine Barshak606d08b2007-08-29 17:38:30 +040051 ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \
Josh Boyer53261522007-09-07 07:51:44 -050052 cuboot-pq2.c cuboot-sequoia.c treeboot-walnut.c
David Gibsoncd197ff2007-03-05 14:24:52 +110053src-boot := $(src-wlib) $(src-plat) empty.c
Paul Mackerras2bf11812006-09-27 22:47:03 +100054
55src-boot := $(addprefix $(obj)/, $(src-boot))
56obj-boot := $(addsuffix .o, $(basename $(src-boot)))
57obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
58obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
59
Olaf Hering70540362005-10-28 17:46:38 -070060quiet_cmd_copy_zlib = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100061 cmd_copy_zlib = sed "s@__attribute_used__@@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
Olaf Hering70540362005-10-28 17:46:38 -070062
63quiet_cmd_copy_zlibheader = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100064 cmd_copy_zlibheader = sed "s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
Olaf Hering70540362005-10-28 17:46:38 -070065# stddef.h for NULL
66quiet_cmd_copy_zliblinuxheader = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100067 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 -070068
69$(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
70 $(call cmd,copy_zlib)
71
72$(addprefix $(obj)/,$(zlibheader)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
73 $(call cmd,copy_zlibheader)
74
75$(addprefix $(obj)/,$(zliblinuxheader)): $(obj)/%: $(srctree)/include/linux/%
76 $(call cmd,copy_zliblinuxheader)
77
Paul Mackerras2bf11812006-09-27 22:47:03 +100078$(obj)/empty.c:
79 @touch $@
Olaf Hering70540362005-10-28 17:46:38 -070080
Geoff Levandbafdb642007-07-04 09:07:18 +100081$(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds: $(obj)/%: $(srctree)/$(src)/%.S
Paul Mackerras2bf11812006-09-27 22:47:03 +100082 @cp $< $@
83
84clean-files := $(zlib) $(zlibheader) $(zliblinuxheader) \
Geoff Levandbafdb642007-07-04 09:07:18 +100085 empty.c zImage zImage.coff.lds zImage.ps3.lds zImage.lds
Olaf Hering70540362005-10-28 17:46:38 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087quiet_cmd_bootcc = BOOTCC $@
88 cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $<
89
90quiet_cmd_bootas = BOOTAS $@
91 cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $<
92
Paul Mackerras2bf11812006-09-27 22:47:03 +100093quiet_cmd_bootar = BOOTAR $@
Milton Miller235fd832007-03-21 09:02:37 -060094 cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $(filter-out FORCE,$^); mv $@.$$$$ $@
Geoff Levanda24c8482005-08-15 13:59:13 -070095
Milton Miller235fd832007-03-21 09:02:37 -060096$(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 $(call if_changed_dep,bootcc)
Milton Miller235fd832007-03-21 09:02:37 -060098$(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 $(call if_changed_dep,bootas)
100
Milton Miller235fd832007-03-21 09:02:37 -0600101$(obj)/wrapper.a: $(obj-wlib) FORCE
102 $(call if_changed,bootar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Josh Boyer0cfcccb2006-10-13 10:07:01 -0500104hostprogs-y := addnote addRamDisk hack-coff mktree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Milton Miller235fd832007-03-21 09:02:37 -0600106targets += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a)
David Gibsoncd197ff2007-03-05 14:24:52 +1100107extra-y := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \
Geoff Levandbafdb642007-07-04 09:07:18 +1000108 $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100109
Paul Mackerras2bf11812006-09-27 22:47:03 +1000110wrapper :=$(srctree)/$(src)/wrapper
Milton Miller65b58032007-03-19 14:58:04 -0600111wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree) \
Milton Miller235fd832007-03-21 09:02:37 -0600112 $(wrapper) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Paul Mackerras2bf11812006-09-27 22:47:03 +1000114#############
115# Bits for building various flavours of zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Paul Mackerras2bf11812006-09-27 22:47:03 +1000117ifneq ($(CROSS32_COMPILE),)
Michael Ellermandcf90652006-09-30 11:54:09 +1000118CROSSWRAP := -C "$(CROSS32_COMPILE)"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000119else
120ifneq ($(CROSS_COMPILE),)
Michael Ellermandcf90652006-09-30 11:54:09 +1000121CROSSWRAP := -C "$(CROSS_COMPILE)"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000122endif
123endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Milton Miller9da82a62007-03-21 09:03:23 -0600125# args (to if_changed): 1 = (this rule), 2 = platform, 3 = dts 4=dtb 5=initrd
Paul Mackerras2bf11812006-09-27 22:47:03 +1000126quiet_cmd_wrap = WRAP $@
Milton Miller9da82a62007-03-21 09:03:23 -0600127 cmd_wrap =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) \
128 $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) vmlinux
Paul Mackerras2bf11812006-09-27 22:47:03 +1000129
Geoff Levand020533e2006-10-07 15:33:53 -0700130image-$(CONFIG_PPC_PSERIES) += zImage.pseries
131image-$(CONFIG_PPC_MAPLE) += zImage.pseries
132image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries
Geoff Levand8a8944a2006-12-04 16:11:38 -0800133image-$(CONFIG_PPC_PS3) += zImage.ps3
Ishizaki Kouc347b792007-02-02 16:47:17 +0900134image-$(CONFIG_PPC_CELLEB) += zImage.pseries
Geoff Levand020533e2006-10-07 15:33:53 -0700135image-$(CONFIG_PPC_CHRP) += zImage.chrp
Nicolas DET7839af32006-11-17 17:08:37 +0100136image-$(CONFIG_PPC_EFIKA) += zImage.chrp
Geoff Levand020533e2006-10-07 15:33:53 -0700137image-$(CONFIG_PPC_PMAC) += zImage.pmac
Mark A. Greerb0e80202007-06-01 05:56:15 +1000138image-$(CONFIG_PPC_HOLLY) += zImage.holly
Mark A. Greerc368d922007-05-12 10:58:18 +1000139image-$(CONFIG_PPC_PRPMC2800) += zImage.prpmc2800
Stephen Rothwell0570d4e2007-05-28 16:12:59 +1000140image-$(CONFIG_PPC_ISERIES) += zImage.iseries
Scott Woodac18c672007-05-03 04:00:00 +1000141image-$(CONFIG_DEFAULT_UIMAGE) += uImage
142
143ifneq ($(CONFIG_DEVICE_TREE),"")
Scott Wood0b195812007-08-21 03:40:01 +1000144image-$(CONFIG_PPC_8xx) += cuImage.8xx
Scott Woode5d8d542007-08-21 03:40:02 +1000145image-$(CONFIG_8260) += cuImage.pq2
David Gibsona6afacb2007-05-01 10:20:20 +1000146image-$(CONFIG_PPC_83xx) += cuImage.83xx
147image-$(CONFIG_PPC_85xx) += cuImage.85xx
David Gibsonf6dfc802007-05-08 14:10:01 +1000148image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony
Josh Boyer2ba45732007-08-20 07:30:32 -0500149image-$(CONFIG_BAMBOO) += treeImage.bamboo
Valentine Barshak606d08b2007-08-29 17:38:30 +0400150image-$(CONFIG_SEQUOIA) += cuImage.sequoia
Josh Boyer53261522007-09-07 07:51:44 -0500151image-$(CONFIG_WALNUT) += treeImage.walnut
Scott Woodac18c672007-05-03 04:00:00 +1000152endif
Geoff Levanda24c8482005-08-15 13:59:13 -0700153
Paul Mackerras9216ad82006-01-15 13:00:08 +1100154# For 32-bit powermacs, build the COFF and miboot images
155# as well as the ELF images.
Paul Mackerras2bf11812006-09-27 22:47:03 +1000156ifeq ($(CONFIG_PPC32),y)
157image-$(CONFIG_PPC_PMAC) += zImage.coff zImage.miboot
158endif
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100159
Milton Miller5d7960f2007-03-21 09:03:10 -0600160initrd- := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-))
David Gibsonf6dfc802007-05-08 14:10:01 +1000161initrd-y := $(patsubst zImage%, zImage.initrd%, \
162 $(patsubst treeImage%, treeImage.initrd%, $(image-y)))
Milton Miller9da82a62007-03-21 09:03:23 -0600163initrd-y := $(filter-out $(image-y), $(initrd-y))
Milton Miller235fd832007-03-21 09:02:37 -0600164targets += $(image-y) $(initrd-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Milton Miller9da82a62007-03-21 09:03:23 -0600166$(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz
167
Mark A. Greera00cec42007-06-01 05:55:35 +1000168# If CONFIG_WANT_DEVICE_TREE is set and CONFIG_DEVICE_TREE isn't an
169# empty string, define 'dts' to be path to the dts
170# CONFIG_DEVICE_TREE will have "" around it, make sure to strip them
171ifeq ($(CONFIG_WANT_DEVICE_TREE),y)
172ifneq ($(CONFIG_DEVICE_TREE),"")
173dts = $(if $(shell echo $(CONFIG_DEVICE_TREE) | grep '^/'),\
174 ,$(srctree)/$(src)/dts/)$(CONFIG_DEVICE_TREE:"%"=%)
175endif
176endif
177
Milton Miller9da82a62007-03-21 09:03:23 -0600178# Don't put the ramdisk on the pattern rule; when its missing make will try
179# the pattern rule with less dependencies that also matches (even with the
180# hard dependency listed).
Mark A. Greera00cec42007-06-01 05:55:35 +1000181$(obj)/zImage.initrd.%: vmlinux $(wrapperbits) $(dts)
182 $(call if_changed,wrap,$*,$(dts),,$(obj)/ramdisk.image.gz)
Milton Miller9da82a62007-03-21 09:03:23 -0600183
Mark A. Greera00cec42007-06-01 05:55:35 +1000184$(obj)/zImage.%: vmlinux $(wrapperbits) $(dts)
185 $(call if_changed,wrap,$*,$(dts))
Milton Miller9da82a62007-03-21 09:03:23 -0600186
Tony Breeds4bb09282007-07-04 14:04:31 +1000187# This cannot be in the root of $(src) as the zImage rule always adds a $(obj)
188# prefix
189$(obj)/vmlinux.strip: vmlinux
190 $(STRIP) -s -R .comment $< -o $@
191
Stephen Rothwell0570d4e2007-05-28 16:12:59 +1000192$(obj)/zImage.iseries: vmlinux
193 $(STRIP) -s -R .comment $< -o $@
194
Geoff Levandbafdb642007-07-04 09:07:18 +1000195$(obj)/zImage.ps3: vmlinux $(wrapper) $(wrapperbits) $(srctree)/$(src)/dts/ps3.dts
196 $(STRIP) -s -R .comment $< -o vmlinux.strip
197 $(call cmd,wrap,ps3,$(srctree)/$(src)/dts/ps3.dts,,)
Milton Miller9da82a62007-03-21 09:03:23 -0600198
Geoff Levandbafdb642007-07-04 09:07:18 +1000199$(obj)/zImage.initrd.ps3: vmlinux $(wrapper) $(wrapperbits) $(srctree)/$(src)/dts/ps3.dts $(obj)/ramdisk.image.gz
200 $(call cmd,wrap,ps3,$(srctree)/$(src)/dts/ps3.dts,,$(obj)/ramdisk.image.gz)
Milton Miller9da82a62007-03-21 09:03:23 -0600201
202$(obj)/uImage: vmlinux $(wrapperbits)
203 $(call if_changed,wrap,uboot)
204
David Gibsond25a9d62007-05-04 17:14:13 +1000205$(obj)/cuImage.%: vmlinux $(dts) $(wrapperbits)
David Gibsona6afacb2007-05-01 10:20:20 +1000206 $(call if_changed,wrap,cuboot-$*,$(dts))
Scott Wood0fdd7172007-04-17 09:25:50 +1000207
David Gibsonf6dfc802007-05-08 14:10:01 +1000208$(obj)/treeImage.initrd.%: vmlinux $(dts) $(wrapperbits)
209 $(call if_changed,wrap,treeboot-$*,$(dts),,$(obj)/ramdisk.image.gz)
210
David Gibson6a32d082007-05-15 12:40:23 +1000211$(obj)/treeImage.%: vmlinux $(dts) $(wrapperbits)
212 $(call if_changed,wrap,treeboot-$*,$(dts))
213
Tony Breeds4bb09282007-07-04 14:04:31 +1000214# If there isn't a platform selected then just strip the vmlinux.
215ifeq (,$(image-y))
216image-y := vmlinux.strip
217endif
218
Paul Mackerras2bf11812006-09-27 22:47:03 +1000219$(obj)/zImage: $(addprefix $(obj)/, $(image-y))
220 @rm -f $@; ln $< $@
221$(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y))
222 @rm -f $@; ln $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Akinobu Mita928370c2007-04-10 21:05:31 +1000224install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
Paul Mackerras2bf11812006-09-27 22:47:03 +1000225 sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $<
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100226
Milton Miller1383a342007-03-28 02:21:04 -0600227# anything not in $(targets)
Geoff Levandbafdb642007-07-04 09:07:18 +1000228clean-files += $(image-) $(initrd-) zImage zImage.initrd cuImage.* treeImage.* \
229 otheros.bld
Milton Miller1383a342007-03-28 02:21:04 -0600230
231# clean up files cached by wrapper
232clean-kernel := vmlinux.strip vmlinux.bin
233clean-kernel += $(addsuffix .gz,$(clean-kernel))
234# If not absolute clean-files are relative to $(obj).
235clean-files += $(addprefix $(objtree)/, $(clean-kernel))