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 | |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 22 | compress-$(CONFIG_KERNEL_GZIP) := CONFIG_KERNEL_GZIP |
Oliver O'Halloran | c762c69 | 2016-09-22 16:54:34 +1000 | [diff] [blame] | 23 | compress-$(CONFIG_KERNEL_XZ) := CONFIG_KERNEL_XZ |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 24 | |
David Gibson | b610b97 | 2007-05-29 15:37:12 +1000 | [diff] [blame] | 25 | BOOTCFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ |
Benjamin Herrenschmidt | 6846ee5 | 2010-01-13 16:19:34 +1100 | [diff] [blame] | 26 | -fno-strict-aliasing -Os -msoft-float -pipe \ |
David Gibson | b610b97 | 2007-05-29 15:37:12 +1000 | [diff] [blame] | 27 | -fomit-frame-pointer -fno-builtin -fPIC -nostdinc \ |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 28 | -isystem $(shell $(CROSS32CC) -print-file-name=include) \ |
| 29 | -D$(compress-y) |
| 30 | |
Cédric Le Goater | 147c051 | 2014-04-24 09:23:39 +0200 | [diff] [blame] | 31 | ifdef CONFIG_PPC64_BOOT_WRAPPER |
| 32 | BOOTCFLAGS += -m64 |
| 33 | endif |
| 34 | ifdef CONFIG_CPU_BIG_ENDIAN |
| 35 | BOOTCFLAGS += -mbig-endian |
Benjamin Herrenschmidt | 655471f | 2015-09-15 11:24:17 +1000 | [diff] [blame] | 36 | else |
| 37 | BOOTCFLAGS += -mlittle-endian |
| 38 | BOOTCFLAGS += $(call cc-option,-mabi=elfv2) |
Cédric Le Goater | 147c051 | 2014-04-24 09:23:39 +0200 | [diff] [blame] | 39 | endif |
| 40 | |
Olaf Hering | decd300 | 2005-08-08 13:24:38 +1000 | [diff] [blame] | 41 | BOOTAFLAGS := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Grant Likely | 105c13d | 2007-10-04 14:05:01 +1000 | [diff] [blame] | 43 | ifdef CONFIG_DEBUG_INFO |
| 44 | BOOTCFLAGS += -g |
| 45 | endif |
| 46 | |
Niels Kristian Bech Jensen | fda7ffd | 2006-07-02 13:02:27 +0200 | [diff] [blame] | 47 | ifeq ($(call cc-option-yn, -fstack-protector),y) |
| 48 | BOOTCFLAGS += -fno-stack-protector |
| 49 | endif |
| 50 | |
Arnd Bergmann | 58ab5e0 | 2016-06-15 17:45:46 +0200 | [diff] [blame] | 51 | BOOTCFLAGS += -I$(objtree)/$(obj) -I$(srctree)/$(obj) |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 52 | |
Dirk Brandewie | 6384934 | 2010-12-22 11:57:28 -0800 | [diff] [blame] | 53 | DTC_FLAGS ?= -p 1024 |
Kumar Gala | 9d4ae9f | 2008-06-26 18:58:11 +1000 | [diff] [blame] | 54 | |
Josh Boyer | bf2e70a | 2008-02-19 13:52:48 +1100 | [diff] [blame] | 55 | $(obj)/4xx.o: BOOTCFLAGS += -mcpu=405 |
| 56 | $(obj)/ebony.o: BOOTCFLAGS += -mcpu=405 |
Solomon Peachy | 0cdf50a | 2009-08-20 10:19:47 +0000 | [diff] [blame] | 57 | $(obj)/cuboot-hotfoot.o: BOOTCFLAGS += -mcpu=405 |
Josh Boyer | bf2e70a | 2008-02-19 13:52:48 +1100 | [diff] [blame] | 58 | $(obj)/cuboot-taishan.o: BOOTCFLAGS += -mcpu=405 |
| 59 | $(obj)/cuboot-katmai.o: BOOTCFLAGS += -mcpu=405 |
Josh Boyer | 9f3eefc | 2008-11-25 06:33:35 +0000 | [diff] [blame] | 60 | $(obj)/cuboot-acadia.o: BOOTCFLAGS += -mcpu=405 |
Josh Boyer | 2e71cc0 | 2007-09-24 07:32:15 -0500 | [diff] [blame] | 61 | $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405 |
Torez Smith | b4e8c8d | 2010-03-05 10:45:54 +0000 | [diff] [blame] | 62 | $(obj)/treeboot-iss4xx.o: BOOTCFLAGS += -mcpu=405 |
Tony Breeds | 228d550 | 2011-11-30 21:39:24 +0000 | [diff] [blame] | 63 | $(obj)/treeboot-currituck.o: BOOTCFLAGS += -mcpu=405 |
Alistair Popple | 2a2c74b | 2014-03-06 14:52:27 +1100 | [diff] [blame] | 64 | $(obj)/treeboot-akebono.o: BOOTCFLAGS += -mcpu=405 |
Grant Likely | b9e4f17 | 2008-04-25 03:33:44 +1000 | [diff] [blame] | 65 | $(obj)/virtex405-head.o: BOOTAFLAGS += -mcpu=405 |
Josh Boyer | 60e4175 | 2007-05-17 04:51:37 +1000 | [diff] [blame] | 66 | |
Oliver O'Halloran | 1b7898e | 2016-09-22 16:54:31 +1000 | [diff] [blame] | 67 | # The pre-boot decompressors pull in a lot of kernel headers and other source |
| 68 | # files. This creates a bit of a dependency headache since we need to copy |
| 69 | # these files into the build dir, fix up any includes and ensure that dependent |
| 70 | # files are copied in the right order. |
| 71 | |
| 72 | # these need to be seperate variables because they are copied out of different |
| 73 | # directories in the kernel tree. Sure you COULd merge them, but it's a |
| 74 | # cure-is-worse-than-disease situation. |
| 75 | zlib-decomp-$(CONFIG_KERNEL_GZIP) := decompress_inflate.c |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 76 | zlib-$(CONFIG_KERNEL_GZIP) := inffast.c inflate.c inftrees.c |
| 77 | zlibheader-$(CONFIG_KERNEL_GZIP) := inffast.h inffixed.h inflate.h inftrees.h infutil.h |
| 78 | zliblinuxheader-$(CONFIG_KERNEL_GZIP) := zlib.h zconf.h zutil.h |
Hugh Blemings | 6bbc547 | 2007-12-21 15:39:28 +1100 | [diff] [blame] | 79 | |
Oliver O'Halloran | 1b7898e | 2016-09-22 16:54:31 +1000 | [diff] [blame] | 80 | $(addprefix $(obj)/, decompress.o): \ |
| 81 | $(addprefix $(obj)/,$(zlib-decomp-y)) |
| 82 | |
| 83 | $(addprefix $(obj)/, $(zlib-decomp-y)): \ |
| 84 | $(addprefix $(obj)/,$(zliblinuxheader-y)) \ |
| 85 | $(addprefix $(obj)/,$(zlibheader-y)) \ |
| 86 | $(addprefix $(obj)/,$(zlib-y)) |
| 87 | |
| 88 | $(addprefix $(obj)/,$(zlib-y)): \ |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 89 | $(addprefix $(obj)/,$(zliblinuxheader-y)) \ |
| 90 | $(addprefix $(obj)/,$(zlibheader-y)) |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 91 | |
David Gibson | 9fffb55 | 2009-04-30 15:25:53 +1000 | [diff] [blame] | 92 | libfdt := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c |
| 93 | libfdtheader := fdt.h libfdt.h libfdt_internal.h |
| 94 | |
Oliver O'Halloran | 656ad58 | 2016-07-01 00:34:37 +1000 | [diff] [blame] | 95 | $(addprefix $(obj)/,$(libfdt) libfdt-wrapper.o simpleboot.o epapr.o opal.o): \ |
David Gibson | 9fffb55 | 2009-04-30 15:25:53 +1000 | [diff] [blame] | 96 | $(addprefix $(obj)/,$(libfdtheader)) |
| 97 | |
Nicholas Piggin | 7c868b6 | 2017-05-12 01:56:50 +1000 | [diff] [blame] | 98 | src-wlib-y := string.S crt0.S stdio.c decompress.c main.c \ |
David Gibson | 9fffb55 | 2009-04-30 15:25:53 +1000 | [diff] [blame] | 99 | $(libfdt) libfdt-wrapper.c \ |
David Gibson | ad9d271 | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 100 | ns16550.c serial.c simple_alloc.c div64.S util.S \ |
Oliver O'Halloran | 1b7898e | 2016-09-22 16:54:31 +1000 | [diff] [blame] | 101 | elf_util.c $(zlib-y) devtree.c stdlib.c \ |
Tony Breeds | b81f18e | 2012-04-03 15:00:39 +0000 | [diff] [blame] | 102 | oflib.c ofconsole.c cuboot.c mpsc.c cpm-serial.c \ |
Ben Hutchings | 10c77db | 2016-11-16 18:27:56 +0000 | [diff] [blame] | 103 | uartlite.c mpc52xx-psc.c opal.c |
| 104 | src-wlib-$(CONFIG_PPC64_BOOT_WRAPPER) += opal-calls.S |
Nicholas Piggin | 7c868b6 | 2017-05-12 01:56:50 +1000 | [diff] [blame] | 105 | ifndef CONFIG_PPC64_BOOT_WRAPPER |
| 106 | src-wlib-y += crtsavres.S |
| 107 | endif |
Tony Breeds | b81f18e | 2012-04-03 15:00:39 +0000 | [diff] [blame] | 108 | src-wlib-$(CONFIG_40x) += 4xx.c planetcore.c |
| 109 | src-wlib-$(CONFIG_44x) += 4xx.c ebony.c bamboo.c |
Paul Gortmaker | 78f3d05 | 2014-01-09 15:33:35 -0500 | [diff] [blame] | 110 | src-wlib-$(CONFIG_8xx) += mpc8xx.c planetcore.c fsl-soc.c |
Tony Breeds | b81f18e | 2012-04-03 15:00:39 +0000 | [diff] [blame] | 111 | src-wlib-$(CONFIG_PPC_82xx) += pq2.c fsl-soc.c planetcore.c |
Paul Gortmaker | 78f3d05 | 2014-01-09 15:33:35 -0500 | [diff] [blame] | 112 | src-wlib-$(CONFIG_EMBEDDED6xx) += mv64x60.c mv64x60_i2c.c ugecon.c fsl-soc.c |
Tony Breeds | b81f18e | 2012-04-03 15:00:39 +0000 | [diff] [blame] | 113 | |
Benjamin Herrenschmidt | 0c9fa29 | 2013-09-24 16:10:38 +1000 | [diff] [blame] | 114 | src-plat-y := of.c epapr.c |
Tony Breeds | b81f18e | 2012-04-03 15:00:39 +0000 | [diff] [blame] | 115 | src-plat-$(CONFIG_40x) += fixed-head.S ep405.c cuboot-hotfoot.c \ |
| 116 | treeboot-walnut.c cuboot-acadia.c \ |
| 117 | cuboot-kilauea.c simpleboot.c \ |
| 118 | virtex405-head.S virtex.c |
| 119 | src-plat-$(CONFIG_44x) += treeboot-ebony.c cuboot-ebony.c treeboot-bamboo.c \ |
| 120 | cuboot-bamboo.c cuboot-sam440ep.c \ |
| 121 | cuboot-sequoia.c cuboot-rainier.c \ |
| 122 | cuboot-taishan.c cuboot-katmai.c \ |
| 123 | cuboot-warp.c cuboot-yosemite.c \ |
| 124 | treeboot-iss4xx.c treeboot-currituck.c \ |
Alistair Popple | 2a2c74b | 2014-03-06 14:52:27 +1100 | [diff] [blame] | 125 | treeboot-akebono.c \ |
Tony Breeds | b81f18e | 2012-04-03 15:00:39 +0000 | [diff] [blame] | 126 | simpleboot.c fixed-head.S virtex.c |
| 127 | src-plat-$(CONFIG_8xx) += cuboot-8xx.c fixed-head.S ep88xc.c redboot-8xx.c |
| 128 | src-plat-$(CONFIG_PPC_MPC52xx) += cuboot-52xx.c |
| 129 | src-plat-$(CONFIG_PPC_82xx) += cuboot-pq2.c fixed-head.S ep8248e.c cuboot-824x.c |
| 130 | src-plat-$(CONFIG_PPC_83xx) += cuboot-83xx.c fixed-head.S redboot-83xx.c |
| 131 | src-plat-$(CONFIG_FSL_SOC_BOOKE) += cuboot-85xx.c cuboot-85xx-cpm2.c |
| 132 | src-plat-$(CONFIG_EMBEDDED6xx) += cuboot-pq2.c cuboot-mpc7448hpc2.c \ |
| 133 | cuboot-c2k.c gamecube-head.S \ |
| 134 | gamecube.c wii-head.S wii.c holly.c \ |
Paul Gortmaker | 3c8464a | 2014-02-05 20:35:13 -0500 | [diff] [blame] | 135 | fixed-head.S mvme5100.c |
Tony Breeds | b81f18e | 2012-04-03 15:00:39 +0000 | [diff] [blame] | 136 | src-plat-$(CONFIG_AMIGAONE) += cuboot-amigaone.c |
| 137 | src-plat-$(CONFIG_PPC_PS3) += ps3-head.S ps3-hvcall.S ps3.c |
Benjamin Herrenschmidt | 0c9fa29 | 2013-09-24 16:10:38 +1000 | [diff] [blame] | 138 | src-plat-$(CONFIG_EPAPR_BOOT) += epapr.c epapr-wrapper.c |
Cédric Le Goater | 2d9afb3 | 2014-04-24 09:23:38 +0200 | [diff] [blame] | 139 | src-plat-$(CONFIG_PPC_PSERIES) += pseries-head.S |
| 140 | src-plat-$(CONFIG_PPC_POWERNV) += pseries-head.S |
| 141 | src-plat-$(CONFIG_PPC_IBM_CELL_BLADE) += pseries-head.S |
Alessio Igor Bogani | 97493e2e | 2016-05-30 11:47:16 +0200 | [diff] [blame] | 142 | src-plat-$(CONFIG_MVME7100) += motload-head.S mvme7100.c |
Tony Breeds | b81f18e | 2012-04-03 15:00:39 +0000 | [diff] [blame] | 143 | |
| 144 | src-wlib := $(sort $(src-wlib-y)) |
| 145 | src-plat := $(sort $(src-plat-y)) |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 146 | src-boot := $(src-wlib) $(src-plat) empty.c |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 147 | |
| 148 | src-boot := $(addprefix $(obj)/, $(src-boot)) |
| 149 | obj-boot := $(addsuffix .o, $(basename $(src-boot))) |
| 150 | obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib)))) |
| 151 | obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat)))) |
Matthew McClintock | 0090e02 | 2012-09-06 08:48:54 +0000 | [diff] [blame] | 152 | obj-plat: $(libfdt) |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 153 | |
Oliver O'Halloran | 1a13de6 | 2016-09-22 16:54:29 +1000 | [diff] [blame] | 154 | quiet_cmd_copy_kern_src = COPY $@ |
| 155 | cmd_copy_kern_src = sed -f $(srctree)/arch/powerpc/boot/fixup-headers.sed $< > $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 156 | |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 157 | $(addprefix $(obj)/,$(zlib-y)): $(obj)/%: $(srctree)/lib/zlib_inflate/% |
Oliver O'Halloran | 1a13de6 | 2016-09-22 16:54:29 +1000 | [diff] [blame] | 158 | $(call cmd,copy_kern_src) |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 159 | |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 160 | $(addprefix $(obj)/,$(zlibheader-y)): $(obj)/%: $(srctree)/lib/zlib_inflate/% |
Oliver O'Halloran | 1a13de6 | 2016-09-22 16:54:29 +1000 | [diff] [blame] | 161 | $(call cmd,copy_kern_src) |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 162 | |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 163 | $(addprefix $(obj)/,$(zliblinuxheader-y)): $(obj)/%: $(srctree)/include/linux/% |
Oliver O'Halloran | 1a13de6 | 2016-09-22 16:54:29 +1000 | [diff] [blame] | 164 | $(call cmd,copy_kern_src) |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 165 | |
Oliver O'Halloran | 1b7898e | 2016-09-22 16:54:31 +1000 | [diff] [blame] | 166 | $(addprefix $(obj)/,$(zlib-decomp-y)): $(obj)/%: $(srctree)/lib/% |
| 167 | $(call cmd,copy_kern_src) |
| 168 | |
David Gibson | 9fffb55 | 2009-04-30 15:25:53 +1000 | [diff] [blame] | 169 | quiet_cmd_copy_libfdt = COPY $@ |
| 170 | cmd_copy_libfdt = cp $< $@ |
| 171 | |
| 172 | $(addprefix $(obj)/,$(libfdt) $(libfdtheader)): $(obj)/%: $(srctree)/scripts/dtc/libfdt/% |
| 173 | $(call cmd,copy_libfdt) |
| 174 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 175 | $(obj)/empty.c: |
Michael Ellerman | 6abe248 | 2016-08-11 16:03:13 +1000 | [diff] [blame] | 176 | $(Q)touch $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 177 | |
Cédric Le Goater | 147c051 | 2014-04-24 09:23:39 +0200 | [diff] [blame] | 178 | $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds : $(obj)/%: $(srctree)/$(src)/%.S |
Michael Ellerman | 6abe248 | 2016-08-11 16:03:13 +1000 | [diff] [blame] | 179 | $(Q)cp $< $@ |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 180 | |
Oliver O'Halloran | 22750d9 | 2016-09-22 16:54:30 +1000 | [diff] [blame] | 181 | clean-files := $(zlib-) $(zlibheader-) $(zliblinuxheader-) \ |
Oliver O'Halloran | 1b7898e | 2016-09-22 16:54:31 +1000 | [diff] [blame] | 182 | $(zlib-decomp-) $(libfdt) $(libfdtheader) \ |
Kumar Gala | b58a457 | 2008-05-18 13:23:03 -0500 | [diff] [blame] | 183 | empty.c zImage.coff.lds zImage.ps3.lds zImage.lds |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | quiet_cmd_bootcc = BOOTCC $@ |
| 186 | cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $< |
| 187 | |
| 188 | quiet_cmd_bootas = BOOTAS $@ |
| 189 | cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $< |
| 190 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 191 | quiet_cmd_bootar = BOOTAR $@ |
Michal Marek | 3135540 | 2011-05-05 05:22:55 +0000 | [diff] [blame] | 192 | cmd_bootar = $(CROSS32AR) -cr$(KBUILD_ARFLAGS) $@.$$$$ $(filter-out FORCE,$^); mv $@.$$$$ $@ |
Geoff Levand | a24c848 | 2005-08-15 13:59:13 -0700 | [diff] [blame] | 193 | |
David Gibson | 9fffb55 | 2009-04-30 15:25:53 +1000 | [diff] [blame] | 194 | $(obj-libfdt): $(obj)/%.o: $(srctree)/scripts/dtc/libfdt/%.c FORCE |
| 195 | $(call if_changed_dep,bootcc) |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 196 | $(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c FORCE |
David Gibson | 2f0dfea | 2007-12-10 14:28:39 +1100 | [diff] [blame] | 197 | $(Q)mkdir -p $(dir $@) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | $(call if_changed_dep,bootcc) |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 199 | $(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S FORCE |
David Gibson | 2f0dfea | 2007-12-10 14:28:39 +1100 | [diff] [blame] | 200 | $(Q)mkdir -p $(dir $@) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | $(call if_changed_dep,bootas) |
| 202 | |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 203 | $(obj)/wrapper.a: $(obj-wlib) FORCE |
| 204 | $(call if_changed,bootar) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Paul Mackerras | 97bb63e | 2010-06-07 14:27:10 +0000 | [diff] [blame] | 206 | hostprogs-y := addnote hack-coff mktree |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 208 | targets += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a) |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 209 | extra-y := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 210 | $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 211 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 212 | dtstree := $(srctree)/$(src)/dts |
| 213 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 214 | wrapper :=$(srctree)/$(src)/wrapper |
David Gibson | 9fffb55 | 2009-04-30 15:25:53 +1000 | [diff] [blame] | 215 | wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree) \ |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 216 | $(wrapper) FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 218 | ############# |
| 219 | # Bits for building various flavours of zImage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 221 | ifneq ($(CROSS32_COMPILE),) |
Michael Ellerman | dcf9065 | 2006-09-30 11:54:09 +1000 | [diff] [blame] | 222 | CROSSWRAP := -C "$(CROSS32_COMPILE)" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 223 | else |
| 224 | ifneq ($(CROSS_COMPILE),) |
Michael Ellerman | dcf9065 | 2006-09-30 11:54:09 +1000 | [diff] [blame] | 225 | CROSSWRAP := -C "$(CROSS_COMPILE)" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 226 | endif |
| 227 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Oliver O'Halloran | f1e510b | 2016-09-22 16:54:33 +1000 | [diff] [blame] | 229 | compressor-$(CONFIG_KERNEL_GZIP) := gz |
Oliver O'Halloran | c762c69 | 2016-09-22 16:54:34 +1000 | [diff] [blame] | 230 | compressor-$(CONFIG_KERNEL_XZ) := xz |
Oliver O'Halloran | f1e510b | 2016-09-22 16:54:33 +1000 | [diff] [blame] | 231 | |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 232 | # 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] | 233 | quiet_cmd_wrap = WRAP $@ |
Oliver O'Halloran | f1e510b | 2016-09-22 16:54:33 +1000 | [diff] [blame] | 234 | cmd_wrap =$(CONFIG_SHELL) $(wrapper) -Z $(compressor-y) -c -o $@ -p $2 \ |
| 235 | $(CROSSWRAP) $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) \ |
| 236 | vmlinux |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 237 | |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 238 | image-$(CONFIG_PPC_PSERIES) += zImage.pseries |
Benjamin Herrenschmidt | 55190f8 | 2011-09-19 17:44:52 +0000 | [diff] [blame] | 239 | image-$(CONFIG_PPC_POWERNV) += zImage.pseries |
Corey Minyard | 58706ef | 2010-01-29 14:18:20 +0000 | [diff] [blame] | 240 | image-$(CONFIG_PPC_MAPLE) += zImage.maple |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 241 | image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 242 | image-$(CONFIG_PPC_PS3) += dtbImage.ps3 |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 243 | image-$(CONFIG_PPC_CHRP) += zImage.chrp |
Nicolas DET | 7839af3 | 2006-11-17 17:08:37 +0100 | [diff] [blame] | 244 | image-$(CONFIG_PPC_EFIKA) += zImage.chrp |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 245 | image-$(CONFIG_PPC_PMAC) += zImage.pmac |
Josh Boyer | 32dde0f | 2008-09-09 04:00:28 +0000 | [diff] [blame] | 246 | image-$(CONFIG_PPC_HOLLY) += dtbImage.holly |
Scott Wood | ac18c67 | 2007-05-03 04:00:00 +1000 | [diff] [blame] | 247 | image-$(CONFIG_DEFAULT_UIMAGE) += uImage |
David Gibson | 6c5b59b | 2011-04-14 18:29:16 +0000 | [diff] [blame] | 248 | image-$(CONFIG_EPAPR_BOOT) += zImage.epapr |
Scott Wood | ac18c67 | 2007-05-03 04:00:00 +1000 | [diff] [blame] | 249 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 250 | # |
| 251 | # Targets which embed a device tree blob |
| 252 | # |
| 253 | # Theses are default targets to build images which embed device tree blobs. |
| 254 | # They are only required on boards which do not have FDT support in firmware. |
Nick Andrew | 2a94739 | 2009-01-03 18:59:37 +1100 | [diff] [blame] | 255 | # Boards with newish u-boot firmware can use the uImage target above |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 256 | # |
| 257 | |
| 258 | # Board ports in arch/powerpc/platform/40x/Kconfig |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 259 | image-$(CONFIG_EP405) += dtbImage.ep405 |
Solomon Peachy | 0cdf50a | 2009-08-20 10:19:47 +0000 | [diff] [blame] | 260 | image-$(CONFIG_HOTFOOT) += cuImage.hotfoot |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 261 | image-$(CONFIG_WALNUT) += treeImage.walnut |
Josh Boyer | 94c73a8 | 2008-09-03 21:01:39 -0400 | [diff] [blame] | 262 | image-$(CONFIG_ACADIA) += cuImage.acadia |
Benjamin Herrenschmidt | 11eab297 | 2011-12-01 19:35:08 +0000 | [diff] [blame] | 263 | image-$(CONFIG_OBS600) += uImage.obs600 |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 264 | |
| 265 | # Board ports in arch/powerpc/platform/44x/Kconfig |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 266 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony |
Josh Boyer | 658e817 | 2007-09-15 04:54:11 +1000 | [diff] [blame] | 267 | image-$(CONFIG_BAMBOO) += treeImage.bamboo cuImage.bamboo |
Giuseppe Coviello | b6014e1 | 2008-05-20 01:20:47 +1000 | [diff] [blame] | 268 | image-$(CONFIG_SAM440EP) += cuImage.sam440ep |
Valentine Barshak | 606d08b | 2007-08-29 17:38:30 +0400 | [diff] [blame] | 269 | image-$(CONFIG_SEQUOIA) += cuImage.sequoia |
Valentine Barshak | 295e742 | 2007-10-31 03:56:06 +1100 | [diff] [blame] | 270 | image-$(CONFIG_RAINIER) += cuImage.rainier |
Hugh Blemings | 6bbc547 | 2007-12-21 15:39:28 +1100 | [diff] [blame] | 271 | image-$(CONFIG_TAISHAN) += cuImage.taishan |
Benjamin Herrenschmidt | 3de9c9c | 2007-12-21 15:39:34 +1100 | [diff] [blame] | 272 | image-$(CONFIG_KATMAI) += cuImage.katmai |
Sean MacLennan | 1e12f3c | 2008-01-11 17:17:51 +1100 | [diff] [blame] | 273 | image-$(CONFIG_WARP) += cuImage.warp |
Josh Boyer | d0a48c9 | 2008-03-06 21:15:52 -0600 | [diff] [blame] | 274 | image-$(CONFIG_YOSEMITE) += cuImage.yosemite |
Torez Smith | b4e8c8d | 2010-03-05 10:45:54 +0000 | [diff] [blame] | 275 | image-$(CONFIG_ISS4xx) += treeImage.iss4xx \ |
| 276 | treeImage.iss4xx-mpic |
Tony Breeds | 228d550 | 2011-11-30 21:39:24 +0000 | [diff] [blame] | 277 | image-$(CONFIG_CURRITUCK) += treeImage.currituck |
Alistair Popple | 2a2c74b | 2014-03-06 14:52:27 +1100 | [diff] [blame] | 278 | image-$(CONFIG_AKEBONO) += treeImage.akebono |
Geoff Levand | a24c848 | 2005-08-15 13:59:13 -0700 | [diff] [blame] | 279 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 280 | # Board ports in arch/powerpc/platform/8xx/Kconfig |
Adrian Bunk | efa58fb | 2008-05-22 03:38:28 +1000 | [diff] [blame] | 281 | image-$(CONFIG_MPC86XADS) += cuImage.mpc866ads |
| 282 | image-$(CONFIG_MPC885ADS) += cuImage.mpc885ads |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 283 | image-$(CONFIG_PPC_EP88XC) += dtbImage.ep88xc |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 284 | image-$(CONFIG_PPC_ADDER875) += cuImage.adder875-uboot \ |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 285 | dtbImage.adder875-redboot |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 286 | |
| 287 | # Board ports in arch/powerpc/platform/52xx/Kconfig |
Grant Likely | bfee95b | 2009-02-04 13:39:17 -0700 | [diff] [blame] | 288 | image-$(CONFIG_PPC_LITE5200) += cuImage.lite5200 lite5200.dtb |
| 289 | image-$(CONFIG_PPC_LITE5200) += cuImage.lite5200b lite5200b.dtb |
| 290 | image-$(CONFIG_PPC_MEDIA5200) += cuImage.media5200 media5200.dtb |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 291 | |
| 292 | # Board ports in arch/powerpc/platform/82xx/Kconfig |
| 293 | image-$(CONFIG_MPC8272_ADS) += cuImage.mpc8272ads |
| 294 | image-$(CONFIG_PQ2FADS) += cuImage.pq2fads |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 295 | image-$(CONFIG_EP8248E) += dtbImage.ep8248e |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 296 | |
| 297 | # Board ports in arch/powerpc/platform/83xx/Kconfig |
| 298 | image-$(CONFIG_MPC832x_MDS) += cuImage.mpc832x_mds |
| 299 | image-$(CONFIG_MPC832x_RDB) += cuImage.mpc832x_rdb |
| 300 | image-$(CONFIG_MPC834x_ITX) += cuImage.mpc8349emitx \ |
| 301 | cuImage.mpc8349emitxgp |
| 302 | image-$(CONFIG_MPC834x_MDS) += cuImage.mpc834x_mds |
| 303 | image-$(CONFIG_MPC836x_MDS) += cuImage.mpc836x_mds |
Bryan O'Donoghue | 59d13f9 | 2008-05-08 13:47:00 +0100 | [diff] [blame] | 304 | image-$(CONFIG_ASP834x) += dtbImage.asp834x-redboot |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 305 | |
| 306 | # Board ports in arch/powerpc/platform/85xx/Kconfig |
| 307 | image-$(CONFIG_MPC8540_ADS) += cuImage.mpc8540ads |
| 308 | image-$(CONFIG_MPC8560_ADS) += cuImage.mpc8560ads |
| 309 | image-$(CONFIG_MPC85xx_CDS) += cuImage.mpc8541cds \ |
Zhao Chenhui | 0d4fdd32 | 2012-03-06 17:06:44 +0800 | [diff] [blame] | 310 | cuImage.mpc8548cds_32b \ |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 311 | cuImage.mpc8555cds |
| 312 | image-$(CONFIG_MPC85xx_MDS) += cuImage.mpc8568mds |
| 313 | image-$(CONFIG_MPC85xx_DS) += cuImage.mpc8544ds \ |
| 314 | cuImage.mpc8572ds |
| 315 | image-$(CONFIG_TQM8540) += cuImage.tqm8540 |
| 316 | image-$(CONFIG_TQM8541) += cuImage.tqm8541 |
Wolfgang Grandegger | 6dd1b64 | 2008-06-06 13:50:04 +0200 | [diff] [blame] | 317 | image-$(CONFIG_TQM8548) += cuImage.tqm8548 |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 318 | image-$(CONFIG_TQM8555) += cuImage.tqm8555 |
| 319 | image-$(CONFIG_TQM8560) += cuImage.tqm8560 |
Paul Gortmaker | a72a6f5 | 2008-03-18 16:13:10 +1100 | [diff] [blame] | 320 | image-$(CONFIG_SBC8548) += cuImage.sbc8548 |
Alexandr Smirnov | ff88011 | 2008-03-04 19:34:26 +0300 | [diff] [blame] | 321 | image-$(CONFIG_KSI8560) += cuImage.ksi8560 |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 322 | |
Alessio Igor Bogani | 97493e2e | 2016-05-30 11:47:16 +0200 | [diff] [blame] | 323 | # Board ports in arch/powerpc/platform/86xx/Kconfig |
| 324 | image-$(CONFIG_MVME7100) += dtbImage.mvme7100 |
| 325 | |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 326 | # Board ports in arch/powerpc/platform/embedded6xx/Kconfig |
| 327 | image-$(CONFIG_STORCENTER) += cuImage.storcenter |
| 328 | image-$(CONFIG_MPC7448HPC2) += cuImage.mpc7448hpc2 |
Remi Machet | c6ec08e | 2008-05-21 06:50:10 +1000 | [diff] [blame] | 329 | image-$(CONFIG_PPC_C2K) += cuImage.c2k |
Albert Herranz | b68a24b | 2009-12-12 06:31:36 +0000 | [diff] [blame] | 330 | image-$(CONFIG_GAMECUBE) += dtbImage.gamecube |
Albert Herranz | 6cdd2417 | 2009-12-12 06:31:45 +0000 | [diff] [blame] | 331 | image-$(CONFIG_WII) += dtbImage.wii |
Stephen Chivers | be20198 | 2014-01-09 13:01:22 +1100 | [diff] [blame] | 332 | image-$(CONFIG_MVME5100) += dtbImage.mvme5100 |
Scott Wood | b09c164 | 2008-01-17 16:31:40 -0600 | [diff] [blame] | 333 | |
Gerhard Pircher | 8f23735 | 2009-02-10 12:26:11 +0000 | [diff] [blame] | 334 | # Board port in arch/powerpc/platform/amigaone/Kconfig |
| 335 | image-$(CONFIG_AMIGAONE) += cuImage.amigaone |
| 336 | |
Paul Mackerras | 9216ad8 | 2006-01-15 13:00:08 +1100 | [diff] [blame] | 337 | # For 32-bit powermacs, build the COFF and miboot images |
| 338 | # as well as the ELF images. |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 339 | ifeq ($(CONFIG_PPC32),y) |
| 340 | image-$(CONFIG_PPC_PMAC) += zImage.coff zImage.miboot |
| 341 | endif |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 342 | |
Grant Likely | c356aa4 | 2008-07-09 09:41:52 -0600 | [diff] [blame] | 343 | # Allow extra targets to be added to the defconfig |
| 344 | image-y += $(subst ",,$(CONFIG_EXTRA_TARGETS)) |
| 345 | |
Michal Marek | 755457f | 2014-10-02 15:49:15 +0200 | [diff] [blame] | 346 | initrd- := $(patsubst zImage%, zImage.initrd%, $(image-)) |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 347 | initrd-y := $(patsubst zImage%, zImage.initrd%, \ |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 348 | $(patsubst dtbImage%, dtbImage.initrd%, \ |
John Linn | 5d1a041 | 2008-07-01 14:17:18 -0600 | [diff] [blame] | 349 | $(patsubst simpleImage%, simpleImage.initrd%, \ |
| 350 | $(patsubst treeImage%, treeImage.initrd%, $(image-y))))) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 351 | initrd-y := $(filter-out $(image-y), $(initrd-y)) |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 352 | targets += $(image-y) $(initrd-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 354 | $(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz |
| 355 | |
| 356 | # Don't put the ramdisk on the pattern rule; when its missing make will try |
| 357 | # the pattern rule with less dependencies that also matches (even with the |
| 358 | # hard dependency listed). |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 359 | $(obj)/zImage.initrd.%: vmlinux $(wrapperbits) FORCE |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 360 | $(call if_changed,wrap,$*,,,$(obj)/ramdisk.image.gz) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 361 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 362 | $(addprefix $(obj)/, $(sort $(filter zImage.%, $(image-y)))): vmlinux $(wrapperbits) FORCE |
Michal Marek | 699c659 | 2014-06-11 13:53:48 +0200 | [diff] [blame] | 363 | $(call if_changed,wrap,$(subst $(obj)/zImage.,,$@)) |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 364 | |
Grant Likely | 595be94 | 2008-02-22 05:57:07 +1100 | [diff] [blame] | 365 | # dtbImage% - a dtbImage is a zImage with an embedded device tree blob |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 366 | $(obj)/dtbImage.initrd.%: vmlinux $(wrapperbits) $(obj)/%.dtb FORCE |
Grant Likely | e04018e | 2008-03-25 09:52:46 +1100 | [diff] [blame] | 367 | $(call if_changed,wrap,$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 368 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 369 | $(obj)/dtbImage.%: vmlinux $(wrapperbits) $(obj)/%.dtb FORCE |
Grant Likely | e04018e | 2008-03-25 09:52:46 +1100 | [diff] [blame] | 370 | $(call if_changed,wrap,$*,,$(obj)/$*.dtb) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 371 | |
Tony Breeds | 4bb0928 | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 372 | # This cannot be in the root of $(src) as the zImage rule always adds a $(obj) |
| 373 | # prefix |
| 374 | $(obj)/vmlinux.strip: vmlinux |
| 375 | $(STRIP) -s -R .comment $< -o $@ |
| 376 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 377 | $(obj)/uImage: vmlinux $(wrapperbits) FORCE |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 378 | $(call if_changed,wrap,uboot) |
| 379 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 380 | $(obj)/uImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) FORCE |
Benjamin Herrenschmidt | 11eab297 | 2011-12-01 19:35:08 +0000 | [diff] [blame] | 381 | $(call if_changed,wrap,uboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) |
| 382 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 383 | $(obj)/uImage.%: vmlinux $(obj)/%.dtb $(wrapperbits) FORCE |
Benjamin Herrenschmidt | 11eab297 | 2011-12-01 19:35:08 +0000 | [diff] [blame] | 384 | $(call if_changed,wrap,uboot-$*,,$(obj)/$*.dtb) |
| 385 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 386 | $(obj)/cuImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) FORCE |
Grant Likely | a4292d7a | 2008-10-17 19:12:07 +0000 | [diff] [blame] | 387 | $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) |
| 388 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 389 | $(obj)/cuImage.%: vmlinux $(obj)/%.dtb $(wrapperbits) FORCE |
Grant Likely | e04018e | 2008-03-25 09:52:46 +1100 | [diff] [blame] | 390 | $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb) |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 391 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 392 | $(obj)/simpleImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) FORCE |
Grant Likely | d2477b5 | 2008-03-19 04:07:43 +1100 | [diff] [blame] | 393 | $(call if_changed,wrap,simpleboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) |
| 394 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 395 | $(obj)/simpleImage.%: vmlinux $(obj)/%.dtb $(wrapperbits) FORCE |
Grant Likely | d2477b5 | 2008-03-19 04:07:43 +1100 | [diff] [blame] | 396 | $(call if_changed,wrap,simpleboot-$*,,$(obj)/$*.dtb) |
| 397 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 398 | $(obj)/treeImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) FORCE |
Grant Likely | e04018e | 2008-03-25 09:52:46 +1100 | [diff] [blame] | 399 | $(call if_changed,wrap,treeboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 400 | |
Michael Ellerman | 42d0c93 | 2016-11-21 21:14:34 +1100 | [diff] [blame] | 401 | $(obj)/treeImage.%: vmlinux $(obj)/%.dtb $(wrapperbits) FORCE |
Grant Likely | e04018e | 2008-03-25 09:52:46 +1100 | [diff] [blame] | 402 | $(call if_changed,wrap,treeboot-$*,,$(obj)/$*.dtb) |
| 403 | |
| 404 | # Rule to build device tree blobs |
Stephen Warren | 7c43185 | 2012-01-09 11:38:15 -0700 | [diff] [blame] | 405 | $(obj)/%.dtb: $(src)/dts/%.dts FORCE |
| 406 | $(call if_changed_dep,dtc) |
David Gibson | 6a32d08 | 2007-05-15 12:40:23 +1000 | [diff] [blame] | 407 | |
Alessio Igor Bogani | 4680c9d | 2016-04-18 08:36:19 +0200 | [diff] [blame] | 408 | $(obj)/%.dtb: $(src)/dts/fsl/%.dts FORCE |
| 409 | $(call if_changed_dep,dtc) |
| 410 | |
Tony Breeds | 4bb0928 | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 411 | # If there isn't a platform selected then just strip the vmlinux. |
| 412 | ifeq (,$(image-y)) |
| 413 | image-y := vmlinux.strip |
| 414 | endif |
| 415 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 416 | $(obj)/zImage: $(addprefix $(obj)/, $(image-y)) |
Michael Ellerman | 6abe248 | 2016-08-11 16:03:13 +1000 | [diff] [blame] | 417 | $(Q)rm -f $@; ln $< $@ |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 418 | $(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y)) |
Michael Ellerman | 6abe248 | 2016-08-11 16:03:13 +1000 | [diff] [blame] | 419 | $(Q)rm -f $@; ln $< $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
Tony Breeds | c913e5f | 2014-08-14 17:05:04 +1000 | [diff] [blame] | 421 | # Only install the vmlinux |
Akinobu Mita | 928370c | 2007-04-10 21:05:31 +1000 | [diff] [blame] | 422 | install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y)) |
Tony Breeds | c913e5f | 2014-08-14 17:05:04 +1000 | [diff] [blame] | 423 | sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" |
| 424 | |
| 425 | # Install the vmlinux and other built boot targets. |
| 426 | zInstall: $(CONFIGURE) $(addprefix $(obj)/, $(image-y)) |
Grant Likely | 29f1aff | 2008-12-19 14:57:20 +0000 | [diff] [blame] | 427 | sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $^ |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 428 | |
Milton Miller | 1383a34 | 2007-03-28 02:21:04 -0600 | [diff] [blame] | 429 | # anything not in $(targets) |
Kumar Gala | b58a457 | 2008-05-18 13:23:03 -0500 | [diff] [blame] | 430 | clean-files += $(image-) $(initrd-) cuImage.* dtbImage.* treeImage.* \ |
| 431 | zImage zImage.initrd zImage.chrp zImage.coff zImage.holly \ |
Stephen Rothwell | 1b04188 | 2012-03-15 18:20:13 +0000 | [diff] [blame] | 432 | zImage.miboot zImage.pmac zImage.pseries \ |
Corey Minyard | 58706ef | 2010-01-29 14:18:20 +0000 | [diff] [blame] | 433 | zImage.maple simpleImage.* otheros.bld *.dtb |
Milton Miller | 1383a34 | 2007-03-28 02:21:04 -0600 | [diff] [blame] | 434 | |
| 435 | # clean up files cached by wrapper |
Oliver O'Halloran | 1b7898e | 2016-09-22 16:54:31 +1000 | [diff] [blame] | 436 | clean-kernel-base := vmlinux.strip vmlinux.bin |
| 437 | clean-kernel := $(addsuffix .gz,$(clean-kernel-base)) |
Oliver O'Halloran | c762c69 | 2016-09-22 16:54:34 +1000 | [diff] [blame] | 438 | clean-kernel += $(addsuffix .xz,$(clean-kernel-base)) |
Milton Miller | 1383a34 | 2007-03-28 02:21:04 -0600 | [diff] [blame] | 439 | # If not absolute clean-files are relative to $(obj). |
| 440 | clean-files += $(addprefix $(objtree)/, $(clean-kernel)) |
David Woodhouse | 773f76b | 2007-12-03 13:56:58 +1100 | [diff] [blame] | 441 | |
| 442 | WRAPPER_OBJDIR := /usr/lib/kernel-wrapper |
| 443 | WRAPPER_DTSDIR := /usr/lib/kernel-wrapper/dts |
| 444 | WRAPPER_BINDIR := /usr/sbin |
| 445 | INSTALL := install |
| 446 | |
| 447 | extra-installed := $(patsubst $(obj)/%, $(DESTDIR)$(WRAPPER_OBJDIR)/%, $(extra-y)) |
| 448 | hostprogs-installed := $(patsubst %, $(DESTDIR)$(WRAPPER_BINDIR)/%, $(hostprogs-y)) |
| 449 | wrapper-installed := $(DESTDIR)$(WRAPPER_BINDIR)/wrapper |
Ben Hutchings | 4d9ef89 | 2011-01-08 14:24:01 +0000 | [diff] [blame] | 450 | dts-installed := $(patsubst $(dtstree)/%, $(DESTDIR)$(WRAPPER_DTSDIR)/%, $(wildcard $(dtstree)/*.dts)) |
David Woodhouse | 773f76b | 2007-12-03 13:56:58 +1100 | [diff] [blame] | 451 | |
| 452 | all-installed := $(extra-installed) $(hostprogs-installed) $(wrapper-installed) $(dts-installed) |
| 453 | |
| 454 | quiet_cmd_mkdir = MKDIR $(patsubst $(INSTALL_HDR_PATH)/%,%,$@) |
| 455 | cmd_mkdir = mkdir -p $@ |
| 456 | |
| 457 | quiet_cmd_install = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,%,$@) |
| 458 | cmd_install = $(INSTALL) -m0644 $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,$(obj)/%,$@) $@ |
| 459 | |
| 460 | quiet_cmd_install_dts = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,dts/%,$@) |
| 461 | cmd_install_dts = $(INSTALL) -m0644 $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,$(srctree)/$(obj)/dts/%,$@) $@ |
| 462 | |
| 463 | quiet_cmd_install_exe = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@) |
| 464 | cmd_install_exe = $(INSTALL) -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(obj)/%,$@) $@ |
| 465 | |
| 466 | quiet_cmd_install_wrapper = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@) |
| 467 | cmd_install_wrapper = $(INSTALL) -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(srctree)/$(obj)/%,$@) $@ ;\ |
| 468 | sed -i $@ -e 's%^object=.*%object=$(WRAPPER_OBJDIR)%' \ |
| 469 | -e 's%^objbin=.*%objbin=$(WRAPPER_BINDIR)%' \ |
| 470 | |
| 471 | |
| 472 | $(DESTDIR)$(WRAPPER_OBJDIR) $(DESTDIR)$(WRAPPER_DTSDIR) $(DESTDIR)$(WRAPPER_BINDIR): |
| 473 | $(call cmd,mkdir) |
| 474 | |
| 475 | $(extra-installed) : $(DESTDIR)$(WRAPPER_OBJDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_OBJDIR) |
| 476 | $(call cmd,install) |
| 477 | |
| 478 | $(hostprogs-installed) : $(DESTDIR)$(WRAPPER_BINDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_BINDIR) |
| 479 | $(call cmd,install_exe) |
| 480 | |
| 481 | $(dts-installed) : $(DESTDIR)$(WRAPPER_DTSDIR)/% : $(srctree)/$(obj)/dts/% | $(DESTDIR)$(WRAPPER_DTSDIR) |
| 482 | $(call cmd,install_dts) |
| 483 | |
| 484 | $(wrapper-installed): $(DESTDIR)$(WRAPPER_BINDIR) $(srctree)/$(obj)/wrapper | $(DESTDIR)$(WRAPPER_BINDIR) |
| 485 | $(call cmd,install_wrapper) |
| 486 | |
| 487 | $(obj)/bootwrapper_install: $(all-installed) |