blob: bfd17b145803950e4eaac1840aba4bc3771a5e7a [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
14# needed to build the 32 bit image. These are normally HOSTCC,
15# but may be a third compiler if, for example, you are cross
16# compiling from an intel box. Once the 64bit ppc gcc is
17# stable it will probably simply be a compiler switch to
18# compile for 32bit mode.
19# To make it easier to setup a cross compiler,
20# CROSS32_COMPILE is setup as a prefix just like CROSS_COMPILE
21# in the toplevel makefile.
22
Paul Mackerras2bf11812006-09-27 22:47:03 +100023all: $(obj)/zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25HOSTCC := gcc
Paul Mackerras94b212c2005-11-16 13:38:21 +110026BOOTCFLAGS := $(HOSTCFLAGS) -fno-builtin -nostdinc -isystem \
27 $(shell $(CROSS32CC) -print-file-name=include) -fPIC
Olaf Heringdecd3002005-08-08 13:24:38 +100028BOOTAFLAGS := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Niels Kristian Bech Jensenfda7ffd2006-07-02 13:02:27 +020030ifeq ($(call cc-option-yn, -fstack-protector),y)
31BOOTCFLAGS += -fno-stack-protector
32endif
33
Olaf Hering70540362005-10-28 17:46:38 -070034BOOTCFLAGS += -I$(obj) -I$(srctree)/$(obj)
35
Paul Mackerras2bf11812006-09-27 22:47:03 +100036zlib := inffast.c inflate.c inftrees.c
37zlibheader := inffast.h inffixed.h inflate.h inftrees.h infutil.h
38zliblinuxheader := zlib.h zconf.h zutil.h
39
40$(addprefix $(obj)/,$(zlib) main.o): $(addprefix $(obj)/,$(zliblinuxheader)) \
41 $(addprefix $(obj)/,$(zlibheader))
42
43src-wlib := string.S stdio.c main.c div64.S $(zlib)
44src-plat := of.c
45src-boot := crt0.S $(src-wlib) $(src-plat) empty.c
46
47src-boot := $(addprefix $(obj)/, $(src-boot))
48obj-boot := $(addsuffix .o, $(basename $(src-boot)))
49obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
50obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
51
Olaf Hering70540362005-10-28 17:46:38 -070052quiet_cmd_copy_zlib = COPY $@
53 cmd_copy_zlib = sed "s@__attribute_used__@@;s@<linux/\([^>]\+\).*@\"\1\"@" $< > $@
54
55quiet_cmd_copy_zlibheader = COPY $@
56 cmd_copy_zlibheader = sed "s@<linux/\([^>]\+\).*@\"\1\"@" $< > $@
57# stddef.h for NULL
58quiet_cmd_copy_zliblinuxheader = COPY $@
59 cmd_copy_zliblinuxheader = sed "s@<linux/string.h>@\"string.h\"@;s@<linux/kernel.h>@<stddef.h>@;s@<linux/\([^>]\+\).*@\"\1\"@" $< > $@
60
61$(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
62 $(call cmd,copy_zlib)
63
64$(addprefix $(obj)/,$(zlibheader)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
65 $(call cmd,copy_zlibheader)
66
67$(addprefix $(obj)/,$(zliblinuxheader)): $(obj)/%: $(srctree)/include/linux/%
68 $(call cmd,copy_zliblinuxheader)
69
Paul Mackerras2bf11812006-09-27 22:47:03 +100070$(obj)/empty.c:
71 @touch $@
Olaf Hering70540362005-10-28 17:46:38 -070072
Paul Mackerras2bf11812006-09-27 22:47:03 +100073$(obj)/zImage.lds $(obj)/zImage.coff.lds: $(obj)/%: $(srctree)/$(src)/%.S
74 @cp $< $@
75
76clean-files := $(zlib) $(zlibheader) $(zliblinuxheader) \
77 $(obj)/empty.c
Olaf Hering70540362005-10-28 17:46:38 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079quiet_cmd_bootcc = BOOTCC $@
80 cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $<
81
82quiet_cmd_bootas = BOOTAS $@
83 cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $<
84
Paul Mackerras2bf11812006-09-27 22:47:03 +100085quiet_cmd_bootar = BOOTAR $@
86 cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $^; mv $@.$$$$ $@
Geoff Levanda24c8482005-08-15 13:59:13 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088$(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c
89 $(call if_changed_dep,bootcc)
90$(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S
91 $(call if_changed_dep,bootas)
92
Paul Mackerras2bf11812006-09-27 22:47:03 +100093$(obj)/wrapper.a: $(obj-wlib)
94 $(call cmd,bootar)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Paul Mackerras2bf11812006-09-27 22:47:03 +100096hostprogs-y := addnote addRamDisk hack-coff
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Paul Mackerras2bf11812006-09-27 22:47:03 +100098extra-y := $(obj)/crt0.o $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \
99 $(obj)/zImage.lds $(obj)/zImage.coff.lds
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100100
Paul Mackerras2bf11812006-09-27 22:47:03 +1000101wrapper :=$(srctree)/$(src)/wrapper
102wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Paul Mackerras2bf11812006-09-27 22:47:03 +1000104#############
105# Bits for building various flavours of zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Paul Mackerras2bf11812006-09-27 22:47:03 +1000107ifneq ($(CROSS32_COMPILE),)
Michael Ellermandcf90652006-09-30 11:54:09 +1000108CROSSWRAP := -C "$(CROSS32_COMPILE)"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000109else
110ifneq ($(CROSS_COMPILE),)
Michael Ellermandcf90652006-09-30 11:54:09 +1000111CROSSWRAP := -C "$(CROSS_COMPILE)"
Paul Mackerras2bf11812006-09-27 22:47:03 +1000112endif
113endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Paul Mackerras2bf11812006-09-27 22:47:03 +1000115quiet_cmd_wrap = WRAP $@
Andrew Morton5b9b5572006-10-04 02:17:32 -0700116 cmd_wrap =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) vmlinux
Paul Mackerras2bf11812006-09-27 22:47:03 +1000117quiet_cmd_wrap_initrd = WRAP $@
118 cmd_wrap_initrd =$(wrapper) -c -o $@ -p $2 $(CROSSWRAP) \
119 -i $(obj)/ramdisk.image.gz vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Paul Mackerras2bf11812006-09-27 22:47:03 +1000121$(obj)/zImage.chrp: vmlinux $(wrapperbits)
122 $(call cmd,wrap,chrp)
Geoff Levande4df7672005-08-10 17:57:42 -0700123
Paul Mackerras2bf11812006-09-27 22:47:03 +1000124$(obj)/zImage.initrd.chrp: vmlinux $(wrapperbits)
125 $(call cmd,wrap_initrd,chrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Paul Mackerras2bf11812006-09-27 22:47:03 +1000127$(obj)/zImage.pseries: vmlinux $(wrapperbits)
128 $(call cmd,wrap,pseries)
Paul Mackerras9216ad82006-01-15 13:00:08 +1100129
Paul Mackerras2bf11812006-09-27 22:47:03 +1000130$(obj)/zImage.initrd.pseries: vmlinux $(wrapperbits)
131 $(call cmd,wrap_initrd,pseries)
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100132
Paul Mackerras2bf11812006-09-27 22:47:03 +1000133$(obj)/zImage.pmac: vmlinux $(wrapperbits)
134 $(call cmd,wrap,pmac)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Paul Mackerras2bf11812006-09-27 22:47:03 +1000136$(obj)/zImage.initrd.pmac: vmlinux $(wrapperbits)
137 $(call cmd,wrap_initrd,pmac)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Paul Mackerras2bf11812006-09-27 22:47:03 +1000139$(obj)/zImage.coff: vmlinux $(wrapperbits)
140 $(call cmd,wrap,pmaccoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Paul Mackerras2bf11812006-09-27 22:47:03 +1000142$(obj)/zImage.initrd.coff: vmlinux $(wrapperbits)
143 $(call cmd,wrap_initrd,pmaccoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Paul Mackerras2bf11812006-09-27 22:47:03 +1000145$(obj)/zImage.miboot: vmlinux $(wrapperbits)
146 $(call cmd,wrap,miboot)
Geoff Levanda24c8482005-08-15 13:59:13 -0700147
Paul Mackerras2bf11812006-09-27 22:47:03 +1000148$(obj)/zImage.initrd.miboot: vmlinux $(wrapperbits)
149 $(call cmd,wrap_initrd,miboot)
150
151$(obj)/uImage: vmlinux $(wrapperbits)
152 $(call cmd,wrap,uboot)
153
154image-$(CONFIG_PPC_PSERIES) += zImage.pseries
155image-$(CONFIG_PPC_MAPLE) += zImage.pseries
156image-$(CONFIG_PPC_CELL) += zImage.pseries
157image-$(CONFIG_PPC_CHRP) += zImage.chrp
158image-$(CONFIG_PPC_PMAC) += zImage.pmac
159image-$(CONFIG_DEFAULT_UIMAGE) += uImage
Geoff Levanda24c8482005-08-15 13:59:13 -0700160
Paul Mackerras9216ad82006-01-15 13:00:08 +1100161# For 32-bit powermacs, build the COFF and miboot images
162# as well as the ELF images.
Paul Mackerras2bf11812006-09-27 22:47:03 +1000163ifeq ($(CONFIG_PPC32),y)
164image-$(CONFIG_PPC_PMAC) += zImage.coff zImage.miboot
165endif
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100166
Paul Mackerras2bf11812006-09-27 22:47:03 +1000167initrd-y := $(patsubst zImage%, zImage.initrd%, $(image-y))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Paul Mackerras2bf11812006-09-27 22:47:03 +1000169$(obj)/zImage: $(addprefix $(obj)/, $(image-y))
170 @rm -f $@; ln $< $@
171$(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y))
172 @rm -f $@; ln $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Paul Mackerras2bf11812006-09-27 22:47:03 +1000174install: $(CONFIGURE) $(image-y)
175 sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $<
Paul Mackerras66a45dd2006-01-14 15:04:06 +1100176
Paul Mackerras2bf11812006-09-27 22:47:03 +1000177clean-files += $(addprefix $(objtree)/, $(obj-boot) vmlinux.strip.gz)
178clean-files += $(addprefix $(objtree)/, $(obj-boot) vmlinux.bin.gz)