]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/powerpc/boot/Makefile
[POWERPC] zImage: Add more flexible gunzip convenience functions
[linux-2.6-omap-h63xx.git] / arch / powerpc / boot / Makefile
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 #
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
23 all: $(obj)/zImage
24
25 HOSTCC          := gcc
26 BOOTCFLAGS      := $(HOSTCFLAGS) -fno-builtin -nostdinc -isystem \
27                    $(shell $(CROSS32CC) -print-file-name=include) -fPIC
28 BOOTAFLAGS      := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc
29
30 ifeq ($(call cc-option-yn, -fstack-protector),y)
31 BOOTCFLAGS      += -fno-stack-protector
32 endif
33
34 BOOTCFLAGS      += -I$(obj) -I$(srctree)/$(obj)
35
36 zlib       := inffast.c inflate.c inftrees.c
37 zlibheader := inffast.h inffixed.h inflate.h inftrees.h infutil.h
38 zliblinuxheader := zlib.h zconf.h zutil.h
39
40 $(addprefix $(obj)/,$(zlib) main.o): $(addprefix $(obj)/,$(zliblinuxheader)) \
41                 $(addprefix $(obj)/,$(zlibheader))
42
43 src-wlib := string.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \
44                 ns16550.c serial.c simple_alloc.c div64.S util.S \
45                 gunzip_util.c $(zlib)
46 src-plat := of.c
47 src-boot := crt0.S $(src-wlib) $(src-plat) empty.c
48
49 src-boot := $(addprefix $(obj)/, $(src-boot))
50 obj-boot := $(addsuffix .o, $(basename $(src-boot)))
51 obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
52 obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
53
54 quiet_cmd_copy_zlib = COPY    $@
55       cmd_copy_zlib = sed "s@__attribute_used__@@;s@<linux/\([^>]\+\).*@\"\1\"@" $< > $@
56
57 quiet_cmd_copy_zlibheader = COPY    $@
58       cmd_copy_zlibheader = sed "s@<linux/\([^>]\+\).*@\"\1\"@" $< > $@
59 # stddef.h for NULL
60 quiet_cmd_copy_zliblinuxheader = COPY    $@
61       cmd_copy_zliblinuxheader = sed "s@<linux/string.h>@\"string.h\"@;s@<linux/kernel.h>@<stddef.h>@;s@<linux/\([^>]\+\).*@\"\1\"@" $< > $@
62
63 $(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
64         $(call cmd,copy_zlib)
65
66 $(addprefix $(obj)/,$(zlibheader)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
67         $(call cmd,copy_zlibheader)
68
69 $(addprefix $(obj)/,$(zliblinuxheader)): $(obj)/%: $(srctree)/include/linux/%
70         $(call cmd,copy_zliblinuxheader)
71
72 $(obj)/empty.c:
73         @touch $@
74
75 $(obj)/zImage.lds $(obj)/zImage.coff.lds: $(obj)/%: $(srctree)/$(src)/%.S
76         @cp $< $@
77
78 clean-files := $(zlib) $(zlibheader) $(zliblinuxheader) \
79                 empty.c zImage zImage.coff.lds zImage.lds zImage.sandpoint
80
81 quiet_cmd_bootcc = BOOTCC  $@
82       cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $<
83
84 quiet_cmd_bootas = BOOTAS  $@
85       cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $<
86
87 quiet_cmd_bootar = BOOTAR  $@
88       cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $^; mv $@.$$$$ $@
89
90 $(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c
91         $(call if_changed_dep,bootcc)
92 $(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S
93         $(call if_changed_dep,bootas)
94
95 $(obj)/wrapper.a: $(obj-wlib)
96         $(call cmd,bootar)
97
98 hostprogs-y     := addnote addRamDisk hack-coff mktree
99
100 extra-y         := $(obj)/crt0.o $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \
101                    $(obj)/zImage.lds $(obj)/zImage.coff.lds
102
103 wrapper         :=$(srctree)/$(src)/wrapper
104 wrapperbits     := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree)
105
106 #############
107 # Bits for building various flavours of zImage
108
109 ifneq ($(CROSS32_COMPILE),)
110 CROSSWRAP := -C "$(CROSS32_COMPILE)"
111 else
112 ifneq ($(CROSS_COMPILE),)
113 CROSSWRAP := -C "$(CROSS_COMPILE)"
114 endif
115 endif
116
117 quiet_cmd_wrap  = WRAP    $@
118       cmd_wrap  =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) vmlinux
119 quiet_cmd_wrap_initrd = WRAP    $@
120       cmd_wrap_initrd =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) \
121                                 -i $(obj)/ramdisk.image.gz vmlinux
122
123 $(obj)/zImage.chrp: vmlinux $(wrapperbits)
124         $(call cmd,wrap,chrp)
125
126 $(obj)/zImage.initrd.chrp: vmlinux $(wrapperbits)
127         $(call cmd,wrap_initrd,chrp)
128
129 $(obj)/zImage.pseries:  vmlinux $(wrapperbits)
130         $(call cmd,wrap,pseries)
131
132 $(obj)/zImage.initrd.pseries: vmlinux $(wrapperbits)
133         $(call cmd,wrap_initrd,pseries)
134
135 $(obj)/zImage.pmac: vmlinux $(wrapperbits)
136         $(call cmd,wrap,pmac)
137
138 $(obj)/zImage.initrd.pmac: vmlinux $(wrapperbits)
139         $(call cmd,wrap_initrd,pmac)
140
141 $(obj)/zImage.coff: vmlinux $(wrapperbits)
142         $(call cmd,wrap,pmaccoff)
143
144 $(obj)/zImage.initrd.coff: vmlinux $(wrapperbits)
145         $(call cmd,wrap_initrd,pmaccoff)
146
147 $(obj)/zImage.miboot: vmlinux $(wrapperbits)
148         $(call cmd,wrap,miboot)
149
150 $(obj)/zImage.initrd.miboot: vmlinux $(wrapperbits)
151         $(call cmd,wrap_initrd,miboot)
152
153 $(obj)/zImage.ps3: vmlinux
154         $(STRIP) -s -R .comment $< -o $@
155
156 $(obj)/zImage.initrd.ps3: vmlinux
157         @echo "  WARNING zImage.initrd.ps3 not supported (yet)"
158
159 $(obj)/uImage: vmlinux $(wrapperbits)
160         $(call cmd,wrap,uboot)
161
162 image-$(CONFIG_PPC_PSERIES)             += zImage.pseries
163 image-$(CONFIG_PPC_MAPLE)               += zImage.pseries
164 image-$(CONFIG_PPC_IBM_CELL_BLADE)      += zImage.pseries
165 image-$(CONFIG_PPC_PS3)                 += zImage.ps3
166 image-$(CONFIG_PPC_CELLEB)              += zImage.pseries
167 image-$(CONFIG_PPC_CHRP)                += zImage.chrp
168 image-$(CONFIG_PPC_EFIKA)               += zImage.chrp
169 image-$(CONFIG_PPC_PMAC)                += zImage.pmac
170 image-$(CONFIG_DEFAULT_UIMAGE)          += uImage
171
172 # For 32-bit powermacs, build the COFF and miboot images
173 # as well as the ELF images.
174 ifeq ($(CONFIG_PPC32),y)
175 image-$(CONFIG_PPC_PMAC)        += zImage.coff zImage.miboot
176 endif
177
178 initrd-y := $(patsubst zImage%, zImage.initrd%, $(image-y))
179
180 $(obj)/zImage:          $(addprefix $(obj)/, $(image-y))
181         @rm -f $@; ln $< $@
182 $(obj)/zImage.initrd:   $(addprefix $(obj)/, $(initrd-y))
183         @rm -f $@; ln $< $@
184
185 install: $(CONFIGURE) $(image-y)
186         sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $<
187
188 clean-files += $(addprefix $(objtree)/, $(obj-boot) vmlinux.strip.gz)
189 clean-files += $(addprefix $(objtree)/, $(obj-boot) vmlinux.bin.gz)
190 clean-files += $(image-)