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