Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
David Gibson | b610b97 | 2007-05-29 15:37:12 +1000 | [diff] [blame] | 14 | # 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | # 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 Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 20 | all: $(obj)/zImage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
David Gibson | b610b97 | 2007-05-29 15:37:12 +1000 | [diff] [blame] | 22 | BOOTCFLAGS := -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 Hering | decd300 | 2005-08-08 13:24:38 +1000 | [diff] [blame] | 26 | BOOTAFLAGS := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Grant Likely | 105c13d | 2007-10-04 14:05:01 +1000 | [diff] [blame] | 28 | ifdef CONFIG_DEBUG_INFO |
| 29 | BOOTCFLAGS += -g |
| 30 | endif |
| 31 | |
Niels Kristian Bech Jensen | fda7ffd | 2006-07-02 13:02:27 +0200 | [diff] [blame] | 32 | ifeq ($(call cc-option-yn, -fstack-protector),y) |
| 33 | BOOTCFLAGS += -fno-stack-protector |
| 34 | endif |
| 35 | |
David Gibson | 2f0dfea | 2007-12-10 14:28:39 +1100 | [diff] [blame] | 36 | BOOTCFLAGS += -I$(obj) -I$(srctree)/$(obj) -I$(srctree)/$(src)/libfdt |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 37 | |
Josh Boyer | bf2e70a | 2008-02-19 13:52:48 +1100 | [diff] [blame] | 38 | $(obj)/4xx.o: BOOTCFLAGS += -mcpu=405 |
| 39 | $(obj)/ebony.o: BOOTCFLAGS += -mcpu=405 |
| 40 | $(obj)/cuboot-taishan.o: BOOTCFLAGS += -mcpu=405 |
| 41 | $(obj)/cuboot-katmai.o: BOOTCFLAGS += -mcpu=405 |
Josh Boyer | 2e71cc0 | 2007-09-24 07:32:15 -0500 | [diff] [blame] | 42 | $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405 |
Josh Boyer | 60e4175 | 2007-05-17 04:51:37 +1000 | [diff] [blame] | 43 | |
Hugh Blemings | 6bbc547 | 2007-12-21 15:39:28 +1100 | [diff] [blame] | 44 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 45 | zlib := inffast.c inflate.c inftrees.c |
| 46 | zlibheader := inffast.h inffixed.h inflate.h inftrees.h infutil.h |
| 47 | zliblinuxheader := zlib.h zconf.h zutil.h |
| 48 | |
David Gibson | d25a9d6 | 2007-05-04 17:14:13 +1000 | [diff] [blame] | 49 | $(addprefix $(obj)/,$(zlib) gunzip_util.o main.o): \ |
| 50 | $(addprefix $(obj)/,$(zliblinuxheader)) $(addprefix $(obj)/,$(zlibheader)) |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 51 | |
David Gibson | 2f0dfea | 2007-12-10 14:28:39 +1100 | [diff] [blame] | 52 | src-libfdt := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c |
David Gibson | 430b01e | 2007-12-10 14:28:39 +1100 | [diff] [blame] | 53 | src-wlib := string.S crt0.S stdio.c main.c \ |
David Gibson | 2f0dfea | 2007-12-10 14:28:39 +1100 | [diff] [blame] | 54 | $(addprefix libfdt/,$(src-libfdt)) libfdt-wrapper.c \ |
David Gibson | ad9d271 | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 55 | ns16550.c serial.c simple_alloc.c div64.S util.S \ |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame] | 56 | gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \ |
Scott Wood | d0f53fa | 2007-08-21 03:39:57 +1000 | [diff] [blame] | 57 | 4xx.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c bamboo.c \ |
Scott Wood | bbc6fac | 2007-08-27 13:46:38 -0500 | [diff] [blame] | 58 | cpm-serial.c stdlib.c mpc52xx-psc.c planetcore.c uartlite.c \ |
| 59 | fsl-soc.c mpc8xx.c pq2.c |
Jon Loeliger | 3490cba | 2008-01-23 12:42:50 -0600 | [diff] [blame] | 60 | src-plat := of.c cuboot-52xx.c cuboot-824x.c cuboot-83xx.c cuboot-85xx.c holly.c \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 61 | cuboot-ebony.c treeboot-ebony.c prpmc2800.c \ |
Valentine Barshak | 606d08b | 2007-08-29 17:38:30 +0400 | [diff] [blame] | 62 | ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \ |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 63 | cuboot-pq2.c cuboot-sequoia.c treeboot-walnut.c \ |
| 64 | cuboot-bamboo.c cuboot-mpc7448hpc2.c cuboot-taishan.c \ |
| 65 | fixed-head.S ep88xc.c ep405.c \ |
Sean MacLennan | 1e12f3c | 2008-01-11 17:17:51 +1100 | [diff] [blame] | 66 | cuboot-katmai.c cuboot-rainier.c redboot-8xx.c ep8248e.c \ |
Kumar Gala | 7858f74 | 2008-01-24 16:04:58 -0600 | [diff] [blame] | 67 | cuboot-warp.c cuboot-85xx-cpm2.c |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 68 | src-boot := $(src-wlib) $(src-plat) empty.c |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 69 | |
| 70 | src-boot := $(addprefix $(obj)/, $(src-boot)) |
| 71 | obj-boot := $(addsuffix .o, $(basename $(src-boot))) |
| 72 | obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib)))) |
| 73 | obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat)))) |
| 74 | |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 75 | quiet_cmd_copy_zlib = COPY $@ |
Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 76 | cmd_copy_zlib = sed "s@__used@@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 77 | |
| 78 | quiet_cmd_copy_zlibheader = COPY $@ |
Segher Boessenkool | 67ccd2f | 2007-05-16 22:49:22 +1000 | [diff] [blame] | 79 | cmd_copy_zlibheader = sed "s@<linux/\([^>]*\).*@\"\1\"@" $< > $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 80 | # stddef.h for NULL |
| 81 | quiet_cmd_copy_zliblinuxheader = COPY $@ |
Segher Boessenkool | 67ccd2f | 2007-05-16 22:49:22 +1000 | [diff] [blame] | 82 | cmd_copy_zliblinuxheader = sed "s@<linux/string.h>@\"string.h\"@;s@<linux/kernel.h>@<stddef.h>@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 83 | |
| 84 | $(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/% |
| 85 | $(call cmd,copy_zlib) |
| 86 | |
| 87 | $(addprefix $(obj)/,$(zlibheader)): $(obj)/%: $(srctree)/lib/zlib_inflate/% |
| 88 | $(call cmd,copy_zlibheader) |
| 89 | |
| 90 | $(addprefix $(obj)/,$(zliblinuxheader)): $(obj)/%: $(srctree)/include/linux/% |
| 91 | $(call cmd,copy_zliblinuxheader) |
| 92 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 93 | $(obj)/empty.c: |
| 94 | @touch $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 95 | |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 96 | $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds: $(obj)/%: $(srctree)/$(src)/%.S |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 97 | @cp $< $@ |
| 98 | |
| 99 | clean-files := $(zlib) $(zlibheader) $(zliblinuxheader) \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 100 | empty.c zImage zImage.coff.lds zImage.ps3.lds zImage.lds |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | quiet_cmd_bootcc = BOOTCC $@ |
| 103 | cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $< |
| 104 | |
| 105 | quiet_cmd_bootas = BOOTAS $@ |
| 106 | cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $< |
| 107 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 108 | quiet_cmd_bootar = BOOTAR $@ |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 109 | cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $(filter-out FORCE,$^); mv $@.$$$$ $@ |
Geoff Levand | a24c848 | 2005-08-15 13:59:13 -0700 | [diff] [blame] | 110 | |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 111 | $(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c FORCE |
David Gibson | 2f0dfea | 2007-12-10 14:28:39 +1100 | [diff] [blame] | 112 | $(Q)mkdir -p $(dir $@) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | $(call if_changed_dep,bootcc) |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 114 | $(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S FORCE |
David Gibson | 2f0dfea | 2007-12-10 14:28:39 +1100 | [diff] [blame] | 115 | $(Q)mkdir -p $(dir $@) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | $(call if_changed_dep,bootas) |
| 117 | |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 118 | $(obj)/wrapper.a: $(obj-wlib) FORCE |
| 119 | $(call if_changed,bootar) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
David Gibson | e2dc87a | 2007-12-18 15:07:20 +1100 | [diff] [blame] | 121 | hostprogs-y := addnote addRamDisk hack-coff mktree dtc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 123 | targets += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a) |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 124 | extra-y := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 125 | $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 126 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 127 | dtstree := $(srctree)/$(src)/dts |
| 128 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 129 | wrapper :=$(srctree)/$(src)/wrapper |
David Gibson | e2dc87a | 2007-12-18 15:07:20 +1100 | [diff] [blame] | 130 | wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree dtc) \ |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 131 | $(wrapper) FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 133 | ############# |
David Gibson | e2dc87a | 2007-12-18 15:07:20 +1100 | [diff] [blame] | 134 | # Bits for building dtc |
| 135 | # DTC_GENPARSER := 1 # Uncomment to rebuild flex/bison output |
| 136 | |
| 137 | dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o srcpos.o checks.o |
| 138 | dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o |
| 139 | dtc-objs := $(addprefix dtc-src/, $(dtc-objs)) |
| 140 | |
| 141 | # prerequisites on generated files needs to be explicit |
| 142 | $(obj)/dtc-src/dtc-parser.tab.o: $(obj)/dtc-src/dtc-parser.tab.c $(obj)/dtc-src/dtc-parser.tab.h |
| 143 | $(obj)/dtc-src/dtc-lexer.lex.o: $(obj)/dtc-src/dtc-lexer.lex.c $(obj)/dtc-src/dtc-parser.tab.h |
| 144 | |
| 145 | HOSTCFLAGS += -I$(src)/dtc-src/ -I$(src)/libfdt/ |
| 146 | |
| 147 | targets += dtc-src/dtc-parser.tab.c |
| 148 | targets += dtc-src/dtc-lexer.lex.c |
| 149 | |
Kumar Gala | e4ccde0 | 2008-02-12 02:32:00 +1100 | [diff] [blame] | 150 | clean-files += dtc-src/dtc-parser.tab.h |
| 151 | |
David Gibson | e2dc87a | 2007-12-18 15:07:20 +1100 | [diff] [blame] | 152 | ifdef DTC_GENPARSER |
| 153 | BISON = bison |
| 154 | FLEX = flex |
| 155 | |
| 156 | quiet_cmd_bison = BISON $@ |
| 157 | cmd_bison = $(BISON) -o$@ -d $<; cp $@ $@_shipped |
| 158 | quiet_cmd_flex = FLEX $@ |
| 159 | cmd_flex = $(FLEX) -o$@ $<; cp $@ $@_shipped |
| 160 | |
| 161 | $(obj)/dtc-src/dtc-parser.tab.c: $(src)/dtc-src/dtc-parser.y FORCE |
| 162 | $(call if_changed,bison) |
| 163 | |
| 164 | $(obj)/dtc-src/dtc-parser.tab.h: $(obj)/dtc-src/dtc-parser.tab.c |
| 165 | |
| 166 | $(obj)/dtc-src/dtc-lexer.lex.c: $(src)/dtc-src/dtc-lexer.l FORCE |
| 167 | $(call if_changed,flex) |
| 168 | endif |
| 169 | |
| 170 | ############# |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 171 | # Bits for building various flavours of zImage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 173 | ifneq ($(CROSS32_COMPILE),) |
Michael Ellerman | dcf9065 | 2006-09-30 11:54:09 +1000 | [diff] [blame] | 174 | CROSSWRAP := -C "$(CROSS32_COMPILE)" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 175 | else |
| 176 | ifneq ($(CROSS_COMPILE),) |
Michael Ellerman | dcf9065 | 2006-09-30 11:54:09 +1000 | [diff] [blame] | 177 | CROSSWRAP := -C "$(CROSS_COMPILE)" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 178 | endif |
| 179 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 181 | # args (to if_changed): 1 = (this rule), 2 = platform, 3 = dts 4=dtb 5=initrd |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 182 | quiet_cmd_wrap = WRAP $@ |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 183 | cmd_wrap =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) \ |
| 184 | $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) vmlinux |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 185 | |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 186 | image-$(CONFIG_PPC_PSERIES) += zImage.pseries |
| 187 | image-$(CONFIG_PPC_MAPLE) += zImage.pseries |
| 188 | image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 189 | image-$(CONFIG_PPC_PS3) += dtbImage.ps3 |
Ishizaki Kou | c347b79 | 2007-02-02 16:47:17 +0900 | [diff] [blame] | 190 | image-$(CONFIG_PPC_CELLEB) += zImage.pseries |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 191 | image-$(CONFIG_PPC_CHRP) += zImage.chrp |
Nicolas DET | 7839af3 | 2006-11-17 17:08:37 +0100 | [diff] [blame] | 192 | image-$(CONFIG_PPC_EFIKA) += zImage.chrp |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 193 | image-$(CONFIG_PPC_PMAC) += zImage.pmac |
Mark A. Greer | b0e8020 | 2007-06-01 05:56:15 +1000 | [diff] [blame] | 194 | image-$(CONFIG_PPC_HOLLY) += zImage.holly |
Mark A. Greer | c368d92 | 2007-05-12 10:58:18 +1000 | [diff] [blame] | 195 | image-$(CONFIG_PPC_PRPMC2800) += zImage.prpmc2800 |
Stephen Rothwell | 0570d4e | 2007-05-28 16:12:59 +1000 | [diff] [blame] | 196 | image-$(CONFIG_PPC_ISERIES) += zImage.iseries |
Scott Wood | ac18c67 | 2007-05-03 04:00:00 +1000 | [diff] [blame] | 197 | image-$(CONFIG_DEFAULT_UIMAGE) += uImage |
| 198 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 199 | # |
| 200 | # Targets which embed a device tree blob |
| 201 | # |
| 202 | # Theses are default targets to build images which embed device tree blobs. |
| 203 | # They are only required on boards which do not have FDT support in firmware. |
| 204 | # Boards with newish u-boot firmare can use the uImage target above |
| 205 | # |
| 206 | |
| 207 | # Board ports in arch/powerpc/platform/40x/Kconfig |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 208 | image-$(CONFIG_EP405) += dtbImage.ep405 |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 209 | image-$(CONFIG_WALNUT) += treeImage.walnut |
| 210 | |
| 211 | # Board ports in arch/powerpc/platform/44x/Kconfig |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 212 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony |
Josh Boyer | 658e817 | 2007-09-15 04:54:11 +1000 | [diff] [blame] | 213 | image-$(CONFIG_BAMBOO) += treeImage.bamboo cuImage.bamboo |
Valentine Barshak | 606d08b | 2007-08-29 17:38:30 +0400 | [diff] [blame] | 214 | image-$(CONFIG_SEQUOIA) += cuImage.sequoia |
Valentine Barshak | 295e742 | 2007-10-31 03:56:06 +1100 | [diff] [blame] | 215 | image-$(CONFIG_RAINIER) += cuImage.rainier |
Hugh Blemings | 6bbc547 | 2007-12-21 15:39:28 +1100 | [diff] [blame] | 216 | image-$(CONFIG_TAISHAN) += cuImage.taishan |
Benjamin Herrenschmidt | 3de9c9c | 2007-12-21 15:39:34 +1100 | [diff] [blame] | 217 | image-$(CONFIG_KATMAI) += cuImage.katmai |
Sean MacLennan | 1e12f3c | 2008-01-11 17:17:51 +1100 | [diff] [blame] | 218 | image-$(CONFIG_WARP) += cuImage.warp |
Geoff Levand | a24c848 | 2005-08-15 13:59:13 -0700 | [diff] [blame] | 219 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 220 | # Board ports in arch/powerpc/platform/8xx/Kconfig |
| 221 | image-$(CONFIG_PPC_MPC86XADS) += cuImage.mpc866ads |
| 222 | image-$(CONFIG_PPC_MPC885ADS) += cuImage.mpc885ads |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 223 | image-$(CONFIG_PPC_EP88XC) += dtbImage.ep88xc |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 224 | image-$(CONFIG_PPC_ADDER875) += cuImage.adder875-uboot \ |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 225 | dtbImage.adder875-redboot |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 226 | |
| 227 | # Board ports in arch/powerpc/platform/52xx/Kconfig |
| 228 | image-$(CONFIG_PPC_LITE5200) += cuImage.lite5200 cuImage.lite5200b |
| 229 | |
| 230 | # Board ports in arch/powerpc/platform/82xx/Kconfig |
| 231 | image-$(CONFIG_MPC8272_ADS) += cuImage.mpc8272ads |
| 232 | image-$(CONFIG_PQ2FADS) += cuImage.pq2fads |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 233 | image-$(CONFIG_EP8248E) += dtbImage.ep8248e |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 234 | |
| 235 | # Board ports in arch/powerpc/platform/83xx/Kconfig |
| 236 | image-$(CONFIG_MPC832x_MDS) += cuImage.mpc832x_mds |
| 237 | image-$(CONFIG_MPC832x_RDB) += cuImage.mpc832x_rdb |
| 238 | image-$(CONFIG_MPC834x_ITX) += cuImage.mpc8349emitx \ |
| 239 | cuImage.mpc8349emitxgp |
| 240 | image-$(CONFIG_MPC834x_MDS) += cuImage.mpc834x_mds |
| 241 | image-$(CONFIG_MPC836x_MDS) += cuImage.mpc836x_mds |
| 242 | |
| 243 | # Board ports in arch/powerpc/platform/85xx/Kconfig |
| 244 | image-$(CONFIG_MPC8540_ADS) += cuImage.mpc8540ads |
| 245 | image-$(CONFIG_MPC8560_ADS) += cuImage.mpc8560ads |
| 246 | image-$(CONFIG_MPC85xx_CDS) += cuImage.mpc8541cds \ |
| 247 | cuImage.mpc8548cds \ |
| 248 | cuImage.mpc8555cds |
| 249 | image-$(CONFIG_MPC85xx_MDS) += cuImage.mpc8568mds |
| 250 | image-$(CONFIG_MPC85xx_DS) += cuImage.mpc8544ds \ |
| 251 | cuImage.mpc8572ds |
| 252 | image-$(CONFIG_TQM8540) += cuImage.tqm8540 |
| 253 | image-$(CONFIG_TQM8541) += cuImage.tqm8541 |
| 254 | image-$(CONFIG_TQM8555) += cuImage.tqm8555 |
| 255 | image-$(CONFIG_TQM8560) += cuImage.tqm8560 |
Paul Gortmaker | a72a6f5 | 2008-03-18 16:13:10 +1100 | [diff] [blame^] | 256 | image-$(CONFIG_SBC8548) += cuImage.sbc8548 |
| 257 | image-$(CONFIG_SBC8560) += cuImage.sbc8560 |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 258 | |
| 259 | # Board ports in arch/powerpc/platform/embedded6xx/Kconfig |
| 260 | image-$(CONFIG_STORCENTER) += cuImage.storcenter |
| 261 | image-$(CONFIG_MPC7448HPC2) += cuImage.mpc7448hpc2 |
Scott Wood | b09c164 | 2008-01-17 16:31:40 -0600 | [diff] [blame] | 262 | |
Paul Mackerras | 9216ad8 | 2006-01-15 13:00:08 +1100 | [diff] [blame] | 263 | # For 32-bit powermacs, build the COFF and miboot images |
| 264 | # as well as the ELF images. |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 265 | ifeq ($(CONFIG_PPC32),y) |
| 266 | image-$(CONFIG_PPC_PMAC) += zImage.coff zImage.miboot |
| 267 | endif |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 268 | |
Milton Miller | 5d7960f | 2007-03-21 09:03:10 -0600 | [diff] [blame] | 269 | initrd- := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-)) |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 270 | initrd-y := $(patsubst zImage%, zImage.initrd%, \ |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 271 | $(patsubst dtbImage%, dtbImage.initrd%, \ |
| 272 | $(patsubst treeImage%, treeImage.initrd%, $(image-y)))) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 273 | initrd-y := $(filter-out $(image-y), $(initrd-y)) |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 274 | targets += $(image-y) $(initrd-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 276 | $(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz |
| 277 | |
| 278 | # Don't put the ramdisk on the pattern rule; when its missing make will try |
| 279 | # the pattern rule with less dependencies that also matches (even with the |
| 280 | # hard dependency listed). |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 281 | $(obj)/zImage.initrd.%: vmlinux $(wrapperbits) |
| 282 | $(call if_changed,wrap,$*,,,$(obj)/ramdisk.image.gz) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 283 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 284 | $(obj)/zImage.%: vmlinux $(wrapperbits) |
| 285 | $(call if_changed,wrap,$*) |
| 286 | |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 287 | # dtbImage% - a dtbImage is a zImage with an embedded device tree blob |
| 288 | $(obj)/dtbImage.initrd.%: vmlinux $(wrapperbits) $(dtstree)/%.dts |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 289 | $(call if_changed,wrap,$*,$(dtstree)/$*.dts,,$(obj)/ramdisk.image.gz) |
| 290 | |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 291 | $(obj)/dtbImage.%: vmlinux $(wrapperbits) $(dtstree)/%.dts |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 292 | $(call if_changed,wrap,$*,$(dtstree)/$*.dts) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 293 | |
Tony Breeds | 4bb0928 | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 294 | # This cannot be in the root of $(src) as the zImage rule always adds a $(obj) |
| 295 | # prefix |
| 296 | $(obj)/vmlinux.strip: vmlinux |
| 297 | $(STRIP) -s -R .comment $< -o $@ |
| 298 | |
Stephen Rothwell | 0570d4e | 2007-05-28 16:12:59 +1000 | [diff] [blame] | 299 | $(obj)/zImage.iseries: vmlinux |
| 300 | $(STRIP) -s -R .comment $< -o $@ |
| 301 | |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 302 | $(obj)/uImage: vmlinux $(wrapperbits) |
| 303 | $(call if_changed,wrap,uboot) |
| 304 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 305 | $(obj)/cuImage.%: vmlinux $(dtstree)/%.dts $(wrapperbits) |
| 306 | $(call if_changed,wrap,cuboot-$*,$(dtstree)/$*.dts) |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 307 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 308 | $(obj)/treeImage.initrd.%: vmlinux $(dtstree)/%.dts $(wrapperbits) |
| 309 | $(call if_changed,wrap,treeboot-$*,$(dtstree)/$*.dts,,$(obj)/ramdisk.image.gz) |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 310 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 311 | $(obj)/treeImage.%: vmlinux $(dtstree)/%.dts $(wrapperbits) |
| 312 | $(call if_changed,wrap,treeboot-$*,$(dtstree)/$*.dts) |
David Gibson | 6a32d08 | 2007-05-15 12:40:23 +1000 | [diff] [blame] | 313 | |
Tony Breeds | 4bb0928 | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 314 | # If there isn't a platform selected then just strip the vmlinux. |
| 315 | ifeq (,$(image-y)) |
| 316 | image-y := vmlinux.strip |
| 317 | endif |
| 318 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 319 | $(obj)/zImage: $(addprefix $(obj)/, $(image-y)) |
| 320 | @rm -f $@; ln $< $@ |
| 321 | $(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y)) |
| 322 | @rm -f $@; ln $< $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Akinobu Mita | 928370c | 2007-04-10 21:05:31 +1000 | [diff] [blame] | 324 | install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y)) |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 325 | sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $< |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 326 | |
Milton Miller | 1383a34 | 2007-03-28 02:21:04 -0600 | [diff] [blame] | 327 | # anything not in $(targets) |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 328 | clean-files += $(image-) $(initrd-) zImage zImage.initrd cuImage.* treeImage.* \ |
| 329 | otheros.bld |
Milton Miller | 1383a34 | 2007-03-28 02:21:04 -0600 | [diff] [blame] | 330 | |
| 331 | # clean up files cached by wrapper |
| 332 | clean-kernel := vmlinux.strip vmlinux.bin |
| 333 | clean-kernel += $(addsuffix .gz,$(clean-kernel)) |
| 334 | # If not absolute clean-files are relative to $(obj). |
| 335 | clean-files += $(addprefix $(objtree)/, $(clean-kernel)) |
David Woodhouse | 773f76b | 2007-12-03 13:56:58 +1100 | [diff] [blame] | 336 | |
| 337 | WRAPPER_OBJDIR := /usr/lib/kernel-wrapper |
| 338 | WRAPPER_DTSDIR := /usr/lib/kernel-wrapper/dts |
| 339 | WRAPPER_BINDIR := /usr/sbin |
| 340 | INSTALL := install |
| 341 | |
| 342 | extra-installed := $(patsubst $(obj)/%, $(DESTDIR)$(WRAPPER_OBJDIR)/%, $(extra-y)) |
| 343 | hostprogs-installed := $(patsubst %, $(DESTDIR)$(WRAPPER_BINDIR)/%, $(hostprogs-y)) |
| 344 | wrapper-installed := $(DESTDIR)$(WRAPPER_BINDIR)/wrapper |
| 345 | dts-installed := $(patsubst $(obj)/dts/%, $(DESTDIR)$(WRAPPER_DTSDIR)/%, $(wildcard $(obj)/dts/*.dts)) |
| 346 | |
| 347 | all-installed := $(extra-installed) $(hostprogs-installed) $(wrapper-installed) $(dts-installed) |
| 348 | |
| 349 | quiet_cmd_mkdir = MKDIR $(patsubst $(INSTALL_HDR_PATH)/%,%,$@) |
| 350 | cmd_mkdir = mkdir -p $@ |
| 351 | |
| 352 | quiet_cmd_install = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,%,$@) |
| 353 | cmd_install = $(INSTALL) -m0644 $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,$(obj)/%,$@) $@ |
| 354 | |
| 355 | quiet_cmd_install_dts = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,dts/%,$@) |
| 356 | cmd_install_dts = $(INSTALL) -m0644 $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,$(srctree)/$(obj)/dts/%,$@) $@ |
| 357 | |
| 358 | quiet_cmd_install_exe = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@) |
| 359 | cmd_install_exe = $(INSTALL) -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(obj)/%,$@) $@ |
| 360 | |
| 361 | quiet_cmd_install_wrapper = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@) |
| 362 | cmd_install_wrapper = $(INSTALL) -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(srctree)/$(obj)/%,$@) $@ ;\ |
| 363 | sed -i $@ -e 's%^object=.*%object=$(WRAPPER_OBJDIR)%' \ |
| 364 | -e 's%^objbin=.*%objbin=$(WRAPPER_BINDIR)%' \ |
| 365 | |
| 366 | |
| 367 | $(DESTDIR)$(WRAPPER_OBJDIR) $(DESTDIR)$(WRAPPER_DTSDIR) $(DESTDIR)$(WRAPPER_BINDIR): |
| 368 | $(call cmd,mkdir) |
| 369 | |
| 370 | $(extra-installed) : $(DESTDIR)$(WRAPPER_OBJDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_OBJDIR) |
| 371 | $(call cmd,install) |
| 372 | |
| 373 | $(hostprogs-installed) : $(DESTDIR)$(WRAPPER_BINDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_BINDIR) |
| 374 | $(call cmd,install_exe) |
| 375 | |
| 376 | $(dts-installed) : $(DESTDIR)$(WRAPPER_DTSDIR)/% : $(srctree)/$(obj)/dts/% | $(DESTDIR)$(WRAPPER_DTSDIR) |
| 377 | $(call cmd,install_dts) |
| 378 | |
| 379 | $(wrapper-installed): $(DESTDIR)$(WRAPPER_BINDIR) $(srctree)/$(obj)/wrapper | $(DESTDIR)$(WRAPPER_BINDIR) |
| 380 | $(call cmd,install_wrapper) |
| 381 | |
| 382 | $(obj)/bootwrapper_install: $(all-installed) |
| 383 | |