blob: 5b2c59b1b2a60766b16f88d9f19d532c26f1ed1d [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
David Gibson988519a2007-05-25 13:19:17 +100034$(obj)/44x.o: BOOTCFLAGS += -mcpu=440
35$(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 \
David Gibson85aecac2007-06-13 14:53:00 +100047 44x.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c
David Gibsonf6dfc802007-05-08 14:10:01 +100048src-plat := of.c cuboot-83xx.c cuboot-85xx.c holly.c \
Mark A. Greerc368d922007-05-12 10:58:18 +100049 cuboot-ebony.c treeboot-ebony.c prpmc2800.c
David Gibsoncd197ff2007-03-05 14:24:52 +110050src-boot := $(src-wlib) $(src-plat) empty.c
Paul Mackerras2bf11812006-09-27 22:47:03 +100051
52src-boot := $(addprefix $(obj)/, $(src-boot))
53obj-boot := $(addsuffix .o, $(basename $(src-boot)))
54obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
55obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
56
Olaf Hering70540362005-10-28 17:46:38 -070057quiet_cmd_copy_zlib = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100058 cmd_copy_zlib = sed "s@__attribute_used__@@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
Olaf Hering70540362005-10-28 17:46:38 -070059
60quiet_cmd_copy_zlibheader = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100061 cmd_copy_zlibheader = sed "s@<linux/\([^>]*\).*@\"\1\"@" $< > $@
Olaf Hering70540362005-10-28 17:46:38 -070062# stddef.h for NULL
63quiet_cmd_copy_zliblinuxheader = COPY $@
Segher Boessenkool67ccd2f2007-05-16 22:49:22 +100064 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 -070065
66$(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
67 $(call cmd,copy_zlib)
68
69$(addprefix $(obj)/,$(zlibheader)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
70 $(call cmd,copy_zlibheader)
71
72$(addprefix $(obj)/,$(zliblinuxheader)): $(obj)/%: $(srctree)/include/linux/%
73 $(call cmd,copy_zliblinuxheader)
74
Paul Mackerras2bf11812006-09-27 22:47:03 +100075$(obj)/empty.c:
76 @touch $@
Olaf Hering70540362005-10-28 17:46:38 -070077
Paul Mackerras2bf11812006-09-27 22:47:03 +100078$(obj)/zImage.lds $(obj)/zImage.coff.lds: $(obj)/%: $(srctree)/$(src)/%.S
79 @cp $< $@
80
81clean-files := $(zlib) $(zlibheader) $(zliblinuxheader) \
Milton Miller5d7960f2007-03-21 09:03:10 -060082 empty.c zImage.coff.lds zImage.lds
Olaf Hering70540362005-10-28 17:46:38 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084quiet_cmd_bootcc = BOOTCC $@
85 cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $<
86
87quiet_cmd_bootas = BOOTAS $@
88 cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $<
89
Paul Mackerras2bf11812006-09-27 22:47:03 +100090quiet_cmd_bootar = BOOTAR $@
Milton Miller235fd832007-03-21 09:02:37 -060091 cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $(filter-out FORCE,$^); mv $@.$$$$ $@
Geoff Levanda24c8482005-08-15 13:59:13 -070092
Milton Miller235fd832007-03-21 09:02:37 -060093$(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 $(call if_changed_dep,bootcc)
Milton Miller235fd832007-03-21 09:02:37 -060095$(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 $(call if_changed_dep,bootas)
97
Milton Miller235fd832007-03-21 09:02:37 -060098$(obj)/wrapper.a: $(obj-wlib) FORCE
99 $(call if_changed,bootar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Josh Boyer0cfcccb2006-10-13 10:07:01 -0500101hostprogs-y := addnote addRamDisk hack-coff mktree
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Milton Miller235fd832007-03-21 09:02:37 -0600103targets += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a)
David Gibsoncd197ff2007-03-05 14:24:52 +1100104extra-y := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \
Paul Mackerras2bf11812006-09-27 22:47:03 +1000105 $(obj)/zImage.lds $(obj)/zImage.coff.lds
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100106
Paul Mackerras2bf11812006-09-27 22:47:03 +1000107wrapper :=$(srctree)/$(src)/wrapper
Milton Miller65b58032007-03-19 14:58:04 -0600108wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree) \
Milton Miller235fd832007-03-21 09:02:37 -0600109 $(wrapper) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Paul Mackerras2bf11812006-09-27 22:47:03 +1000111#############
112# Bits for building various flavours of zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Paul Mackerras2bf11812006-09-27 22:47:03 +1000114ifneq ($(CROSS32_COMPILE),)
Michael Ellermandcf90652006-09-30 11:54:09 +1000115CROSSWRAP := -C "$(CROSS32_COMPILE)"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000116else
117ifneq ($(CROSS_COMPILE),)
Michael Ellermandcf90652006-09-30 11:54:09 +1000118CROSSWRAP := -C "$(CROSS_COMPILE)"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000119endif
120endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Milton Miller9da82a62007-03-21 09:03:23 -0600122# args (to if_changed): 1 = (this rule), 2 = platform, 3 = dts 4=dtb 5=initrd
Paul Mackerras2bf11812006-09-27 22:47:03 +1000123quiet_cmd_wrap = WRAP $@
Milton Miller9da82a62007-03-21 09:03:23 -0600124 cmd_wrap =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) \
125 $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) vmlinux
Paul Mackerras2bf11812006-09-27 22:47:03 +1000126
Geoff Levand020533e2006-10-07 15:33:53 -0700127image-$(CONFIG_PPC_PSERIES) += zImage.pseries
128image-$(CONFIG_PPC_MAPLE) += zImage.pseries
129image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries
Geoff Levand8a8944a2006-12-04 16:11:38 -0800130image-$(CONFIG_PPC_PS3) += zImage.ps3
Ishizaki Kouc347b792007-02-02 16:47:17 +0900131image-$(CONFIG_PPC_CELLEB) += zImage.pseries
Geoff Levand020533e2006-10-07 15:33:53 -0700132image-$(CONFIG_PPC_CHRP) += zImage.chrp
Nicolas DET7839af32006-11-17 17:08:37 +0100133image-$(CONFIG_PPC_EFIKA) += zImage.chrp
Geoff Levand020533e2006-10-07 15:33:53 -0700134image-$(CONFIG_PPC_PMAC) += zImage.pmac
Mark A. Greerb0e80202007-06-01 05:56:15 +1000135image-$(CONFIG_PPC_HOLLY) += zImage.holly
Mark A. Greerc368d922007-05-12 10:58:18 +1000136image-$(CONFIG_PPC_PRPMC2800) += zImage.prpmc2800
Stephen Rothwell0570d4e2007-05-28 16:12:59 +1000137image-$(CONFIG_PPC_ISERIES) += zImage.iseries
Scott Woodac18c672007-05-03 04:00:00 +1000138image-$(CONFIG_DEFAULT_UIMAGE) += uImage
139
140ifneq ($(CONFIG_DEVICE_TREE),"")
David Gibsona6afacb2007-05-01 10:20:20 +1000141image-$(CONFIG_PPC_83xx) += cuImage.83xx
142image-$(CONFIG_PPC_85xx) += cuImage.85xx
David Gibsonf6dfc802007-05-08 14:10:01 +1000143image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony
Scott Woodac18c672007-05-03 04:00:00 +1000144endif
Geoff Levanda24c8482005-08-15 13:59:13 -0700145
Paul Mackerras9216ad82006-01-15 13:00:08 +1100146# For 32-bit powermacs, build the COFF and miboot images
147# as well as the ELF images.
Paul Mackerras2bf11812006-09-27 22:47:03 +1000148ifeq ($(CONFIG_PPC32),y)
149image-$(CONFIG_PPC_PMAC) += zImage.coff zImage.miboot
150endif
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100151
Milton Miller5d7960f2007-03-21 09:03:10 -0600152initrd- := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-))
David Gibsonf6dfc802007-05-08 14:10:01 +1000153initrd-y := $(patsubst zImage%, zImage.initrd%, \
154 $(patsubst treeImage%, treeImage.initrd%, $(image-y)))
Milton Miller9da82a62007-03-21 09:03:23 -0600155initrd-y := $(filter-out $(image-y), $(initrd-y))
Milton Miller235fd832007-03-21 09:02:37 -0600156targets += $(image-y) $(initrd-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Milton Miller9da82a62007-03-21 09:03:23 -0600158$(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz
159
Mark A. Greera00cec42007-06-01 05:55:35 +1000160# If CONFIG_WANT_DEVICE_TREE is set and CONFIG_DEVICE_TREE isn't an
161# empty string, define 'dts' to be path to the dts
162# CONFIG_DEVICE_TREE will have "" around it, make sure to strip them
163ifeq ($(CONFIG_WANT_DEVICE_TREE),y)
164ifneq ($(CONFIG_DEVICE_TREE),"")
165dts = $(if $(shell echo $(CONFIG_DEVICE_TREE) | grep '^/'),\
166 ,$(srctree)/$(src)/dts/)$(CONFIG_DEVICE_TREE:"%"=%)
167endif
168endif
169
Milton Miller9da82a62007-03-21 09:03:23 -0600170# Don't put the ramdisk on the pattern rule; when its missing make will try
171# the pattern rule with less dependencies that also matches (even with the
172# hard dependency listed).
Mark A. Greera00cec42007-06-01 05:55:35 +1000173$(obj)/zImage.initrd.%: vmlinux $(wrapperbits) $(dts)
174 $(call if_changed,wrap,$*,$(dts),,$(obj)/ramdisk.image.gz)
Milton Miller9da82a62007-03-21 09:03:23 -0600175
Mark A. Greera00cec42007-06-01 05:55:35 +1000176$(obj)/zImage.%: vmlinux $(wrapperbits) $(dts)
177 $(call if_changed,wrap,$*,$(dts))
Milton Miller9da82a62007-03-21 09:03:23 -0600178
Stephen Rothwell0570d4e2007-05-28 16:12:59 +1000179$(obj)/zImage.iseries: vmlinux
180 $(STRIP) -s -R .comment $< -o $@
181
Milton Miller9da82a62007-03-21 09:03:23 -0600182$(obj)/zImage.ps3: vmlinux
183 $(STRIP) -s -R .comment $< -o $@
184
185$(obj)/zImage.initrd.ps3: vmlinux
186 @echo " WARNING zImage.initrd.ps3 not supported (yet)"
187
188$(obj)/uImage: vmlinux $(wrapperbits)
189 $(call if_changed,wrap,uboot)
190
David Gibsond25a9d62007-05-04 17:14:13 +1000191$(obj)/cuImage.%: vmlinux $(dts) $(wrapperbits)
David Gibsona6afacb2007-05-01 10:20:20 +1000192 $(call if_changed,wrap,cuboot-$*,$(dts))
Scott Wood0fdd7172007-04-17 09:25:50 +1000193
David Gibsonf6dfc802007-05-08 14:10:01 +1000194$(obj)/treeImage.initrd.%: vmlinux $(dts) $(wrapperbits)
195 $(call if_changed,wrap,treeboot-$*,$(dts),,$(obj)/ramdisk.image.gz)
196
David Gibson6a32d082007-05-15 12:40:23 +1000197$(obj)/treeImage.%: vmlinux $(dts) $(wrapperbits)
198 $(call if_changed,wrap,treeboot-$*,$(dts))
199
Paul Mackerras2bf11812006-09-27 22:47:03 +1000200$(obj)/zImage: $(addprefix $(obj)/, $(image-y))
201 @rm -f $@; ln $< $@
202$(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y))
203 @rm -f $@; ln $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Akinobu Mita928370c2007-04-10 21:05:31 +1000205install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
Paul Mackerras2bf11812006-09-27 22:47:03 +1000206 sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $<
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100207
Milton Miller1383a342007-03-28 02:21:04 -0600208# anything not in $(targets)
Mark A. Greer941b7ad2007-06-01 05:54:39 +1000209clean-files += $(image-) $(initrd-) zImage zImage.initrd cuImage.* treeImage.*
Milton Miller1383a342007-03-28 02:21:04 -0600210
211# clean up files cached by wrapper
212clean-kernel := vmlinux.strip vmlinux.bin
213clean-kernel += $(addsuffix .gz,$(clean-kernel))
214# If not absolute clean-files are relative to $(obj).
215clean-files += $(addprefix $(objtree)/, $(clean-kernel))