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