~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/boot/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0
  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 may be 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
 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.
 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 
 21 all: $(obj)/zImage
 22 
 23 ifdef CROSS32_COMPILE
 24 ifdef CONFIG_CC_IS_CLANG
 25     BOOTCC := $(CROSS32_COMPILE)clang
 26 else
 27     BOOTCC := $(CROSS32_COMPILE)gcc
 28 endif
 29     BOOTAR := $(CROSS32_COMPILE)ar
 30 else
 31     BOOTCC := $(CC)
 32     BOOTAR := $(AR)
 33 endif
 34 
 35 ifdef CONFIG_PPC64_BOOT_WRAPPER
 36 BOOTTARGETFLAGS += -m64
 37 BOOTTARGETFLAGS += -mabi=elfv2
 38 ifdef CONFIG_PPC64_ELF_ABI_V2
 39 BOOTTARGETFLAGS += $(call cc-option,-mabi=elfv2)
 40 endif
 41 else
 42 BOOTTARGETFLAGS := -m32
 43 endif
 44 
 45 ifdef CONFIG_TARGET_CPU_BOOL
 46 BOOTTARGETFLAGS += -mcpu=$(CONFIG_TARGET_CPU)
 47 else ifdef CONFIG_PPC64_BOOT_WRAPPER
 48 ifdef CONFIG_CPU_LITTLE_ENDIAN
 49 BOOTTARGETFLAGS += -mcpu=powerpc64le
 50 else
 51 BOOTTARGETFLAGS += -mcpu=powerpc64
 52 endif
 53 endif
 54 
 55 $(obj)/4xx.o: BOOTTARGETFLAGS += -mcpu=405
 56 $(obj)/ebony.o: BOOTTARGETFLAGS += -mcpu=440
 57 $(obj)/cuboot-taishan.o: BOOTTARGETFLAGS += -mcpu=440
 58 $(obj)/cuboot-katmai.o: BOOTTARGETFLAGS += -mcpu=440
 59 $(obj)/treeboot-iss4xx.o: BOOTTARGETFLAGS += -mcpu=405
 60 $(obj)/treeboot-currituck.o: BOOTTARGETFLAGS += -mcpu=405
 61 $(obj)/treeboot-akebono.o: BOOTTARGETFLAGS += -mcpu=405
 62 
 63 ifdef CONFIG_CPU_BIG_ENDIAN
 64 BOOTTARGETFLAGS += -mbig-endian
 65 else
 66 BOOTTARGETFLAGS += -mlittle-endian
 67 endif
 68 
 69 BOOTCPPFLAGS    := -nostdinc $(LINUXINCLUDE)
 70 BOOTCPPFLAGS    += -isystem $(shell $(BOOTCC) -print-file-name=include)
 71 
 72 BOOTCFLAGS      := $(BOOTTARGETFLAGS) \
 73                    -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
 74                    -fno-strict-aliasing -O2 \
 75                    -msoft-float -mno-altivec -mno-vsx \
 76                    $(call cc-option,-mno-prefixed) \
 77                    $(call cc-option,-mno-pcrel) \
 78                    $(call cc-option,-mno-mma) \
 79                    $(call cc-option,-mno-spe) $(call cc-option,-mspe=no) \
 80                    -fomit-frame-pointer -fno-builtin -fPIC
 81 
 82 BOOTAFLAGS      := $(BOOTTARGETFLAGS) -D__ASSEMBLY__
 83 
 84 BOOTARFLAGS     := -crD
 85 
 86 ifdef CONFIG_CC_IS_CLANG
 87 BOOTCFLAGS += $(CLANG_FLAGS)
 88 BOOTAFLAGS += $(CLANG_FLAGS)
 89 endif
 90 
 91 ifdef CONFIG_DEBUG_INFO
 92 BOOTCFLAGS      += -g
 93 endif
 94 
 95 ifeq ($(call cc-option-yn, -fstack-protector),y)
 96 BOOTCFLAGS      += -fno-stack-protector
 97 endif
 98 
 99 BOOTCFLAGS      += -include $(srctree)/include/linux/compiler_attributes.h
100 BOOTCFLAGS      += -I$(objtree)/$(obj) -I$(srctree)/$(obj)
101 
102 DTC_FLAGS       ?= -p 1024
103 
104 # The pre-boot decompressors pull in a lot of kernel headers and other source
105 # files. This creates a bit of a dependency headache since we need to copy
106 # these files into the build dir, fix up any includes and ensure that dependent
107 # files are copied in the right order.
108 
109 # these need to be separate variables because they are copied out of different
110 # directories in the kernel tree. Sure you COULD merge them, but it's a
111 # cure-is-worse-than-disease situation.
112 zlib-decomp-$(CONFIG_KERNEL_GZIP) := decompress_inflate.c
113 zlib-$(CONFIG_KERNEL_GZIP) := inffast.c inflate.c inftrees.c
114 zlibheader-$(CONFIG_KERNEL_GZIP) := inffast.h inffixed.h inflate.h inftrees.h infutil.h
115 zliblinuxheader-$(CONFIG_KERNEL_GZIP) := zlib.h zconf.h zutil.h
116 
117 $(addprefix $(obj)/, decompress.o): \
118         $(addprefix $(obj)/,$(zlib-decomp-y))
119 
120 $(addprefix $(obj)/, $(zlib-decomp-y)): \
121         $(addprefix $(obj)/,$(zliblinuxheader-y)) \
122         $(addprefix $(obj)/,$(zlibheader-y)) \
123         $(addprefix $(obj)/,$(zlib-y))
124 
125 $(addprefix $(obj)/,$(zlib-y)): \
126         $(addprefix $(obj)/,$(zliblinuxheader-y)) \
127         $(addprefix $(obj)/,$(zlibheader-y))
128 
129 libfdt       := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c
130 libfdtheader := fdt.h libfdt.h libfdt_internal.h
131 
132 $(addprefix $(obj)/,$(libfdt) libfdt-wrapper.o simpleboot.o epapr.o opal.o \
133         treeboot-akebono.o treeboot-currituck.o treeboot-iss4xx.o): \
134         $(addprefix $(obj)/,$(libfdtheader))
135 
136 src-wlib-y := string.S crt0.S stdio.c decompress.c main.c \
137                 $(libfdt) libfdt-wrapper.c \
138                 ns16550.c serial.c simple_alloc.c div64.S util.S \
139                 elf_util.c $(zlib-y) devtree.c stdlib.c \
140                 oflib.c ofconsole.c cuboot.c
141 
142 src-wlib-$(CONFIG_PPC_MPC52xx) += mpc52xx-psc.c
143 src-wlib-$(CONFIG_PPC_POWERNV) += opal-calls.S opal.c
144 ifndef CONFIG_PPC64_BOOT_WRAPPER
145 src-wlib-y += crtsavres.S
146 endif
147 src-wlib-$(CONFIG_44x) += 4xx.c ebony.c bamboo.c
148 src-wlib-$(CONFIG_PPC_8xx) += mpc8xx.c planetcore.c fsl-soc.c
149 src-wlib-$(CONFIG_PPC_82xx) += pq2.c fsl-soc.c planetcore.c
150 src-wlib-$(CONFIG_EMBEDDED6xx) += ugecon.c fsl-soc.c
151 src-wlib-$(CONFIG_CPM) += cpm-serial.c
152 
153 src-plat-y := of.c epapr.c
154 src-plat-$(CONFIG_44x) += treeboot-ebony.c cuboot-ebony.c treeboot-bamboo.c \
155                                 cuboot-bamboo.c cuboot-sam440ep.c \
156                                 cuboot-sequoia.c cuboot-rainier.c \
157                                 cuboot-taishan.c cuboot-katmai.c \
158                                 cuboot-warp.c cuboot-yosemite.c \
159                                 treeboot-iss4xx.c treeboot-currituck.c \
160                                 treeboot-akebono.c \
161                                 simpleboot.c fixed-head.S
162 src-plat-$(CONFIG_PPC_8xx) += cuboot-8xx.c fixed-head.S ep88xc.c redboot-8xx.c
163 src-plat-$(CONFIG_PPC_MPC52xx) += cuboot-52xx.c
164 src-plat-$(CONFIG_PPC_82xx) += cuboot-pq2.c fixed-head.S ep8248e.c cuboot-824x.c
165 src-plat-$(CONFIG_PPC_83xx) += cuboot-83xx.c fixed-head.S redboot-83xx.c
166 src-plat-$(CONFIG_FSL_SOC_BOOKE) += cuboot-85xx.c cuboot-85xx-cpm2.c
167 src-plat-$(CONFIG_EMBEDDED6xx) += cuboot-pq2.c \
168                                         gamecube-head.S gamecube.c \
169                                         wii-head.S wii.c holly.c \
170                                         fixed-head.S mvme5100.c
171 src-plat-$(CONFIG_AMIGAONE) += cuboot-amigaone.c
172 src-plat-$(CONFIG_PPC_PS3) += ps3-head.S ps3-hvcall.S ps3.c
173 src-plat-$(CONFIG_EPAPR_BOOT) += epapr.c epapr-wrapper.c
174 src-plat-$(CONFIG_PPC_PSERIES) += pseries-head.S
175 src-plat-$(CONFIG_PPC_POWERNV) += pseries-head.S
176 src-plat-$(CONFIG_PPC_IBM_CELL_BLADE) += pseries-head.S
177 src-plat-$(CONFIG_MVME7100) += motload-head.S mvme7100.c
178 
179 src-plat-$(CONFIG_PPC_MICROWATT) += fixed-head.S microwatt.c
180 
181 src-wlib := $(sort $(src-wlib-y))
182 src-plat := $(sort $(src-plat-y))
183 src-boot := $(src-wlib) $(src-plat) empty.c
184 
185 src-boot := $(addprefix $(obj)/, $(src-boot))
186 obj-boot := $(addsuffix .o, $(basename $(src-boot)))
187 obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib))))
188 obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat))))
189 obj-plat: $(libfdt)
190 
191 quiet_cmd_copy_kern_src = COPY    $@
192       cmd_copy_kern_src = sed -f $(srctree)/arch/powerpc/boot/fixup-headers.sed $< > $@
193 
194 $(addprefix $(obj)/,$(zlib-y)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
195         $(call cmd,copy_kern_src)
196 
197 $(addprefix $(obj)/,$(zlibheader-y)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
198         $(call cmd,copy_kern_src)
199 
200 $(addprefix $(obj)/,$(zliblinuxheader-y)): $(obj)/%: $(srctree)/include/linux/%
201         $(call cmd,copy_kern_src)
202 
203 $(addprefix $(obj)/,$(zlib-decomp-y)): $(obj)/%: $(srctree)/lib/%
204         $(call cmd,copy_kern_src)
205 
206 quiet_cmd_copy_libfdt = COPY    $@
207       cmd_copy_libfdt = cp $< $@
208 
209 $(addprefix $(obj)/,$(libfdt) $(libfdtheader)): $(obj)/%: $(srctree)/scripts/dtc/libfdt/%
210         $(call cmd,copy_libfdt)
211 
212 $(obj)/empty.c:
213         $(Q)touch $@
214 
215 $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds : $(obj)/%: $(src)/%.S
216         $(Q)cp $< $@
217 
218 clean-files := $(zlib-) $(zlibheader-) $(zliblinuxheader-) \
219                 $(zlib-decomp-) $(libfdt) $(libfdtheader) \
220                 empty.c zImage.coff.lds zImage.ps3.lds zImage.lds
221 
222 quiet_cmd_bootcc = BOOTCC  $@
223       cmd_bootcc = $(BOOTCC) -Wp,-MD,$(depfile) $(BOOTCPPFLAGS) $(BOOTCFLAGS) -c -o $@ $<
224 
225 quiet_cmd_bootas = BOOTAS  $@
226       cmd_bootas = $(BOOTCC) -Wp,-MD,$(depfile) $(BOOTCPPFLAGS) $(BOOTAFLAGS) -c -o $@ $<
227 
228 quiet_cmd_bootar = BOOTAR  $@
229       cmd_bootar = $(BOOTAR) $(BOOTARFLAGS) $@.$$$$ $(real-prereqs); mv $@.$$$$ $@
230 
231 $(obj-libfdt): $(obj)/%.o: $(srctree)/scripts/dtc/libfdt/%.c FORCE
232         $(call if_changed_dep,bootcc)
233 $(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c FORCE
234         $(Q)mkdir -p $(dir $@)
235         $(call if_changed_dep,bootcc)
236 $(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S FORCE
237         $(Q)mkdir -p $(dir $@)
238         $(call if_changed_dep,bootas)
239 
240 $(obj)/wrapper.a: $(obj-wlib) FORCE
241         $(call if_changed,bootar)
242 
243 hostprogs       := addnote hack-coff mktree
244 
245 targets         += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a) zImage.lds
246 extra-y         := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \
247                    $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds
248 
249 dtstree         := $(src)/dts
250 
251 wrapper         := $(src)/wrapper
252 wrapperbits     := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree) \
253                         $(wrapper) FORCE
254 
255 #############
256 # Bits for building various flavours of zImage
257 
258 ifneq ($(CROSS32_COMPILE),)
259 CROSSWRAP := -C "$(CROSS32_COMPILE)"
260 else
261 ifneq ($(CROSS_COMPILE),)
262 CROSSWRAP := -C "$(CROSS_COMPILE)"
263 endif
264 endif
265 
266 compressor-$(CONFIG_KERNEL_GZIP) := gz
267 compressor-$(CONFIG_KERNEL_XZ)   := xz
268 compressor-$(CONFIG_KERNEL_LZMA)   := lzma
269 compressor-$(CONFIG_KERNEL_LZO) := lzo
270 
271 # args (to if_changed): 1 = (this rule), 2 = platform, 3 = dts 4=dtb 5=initrd
272 quiet_cmd_wrap  = WRAP    $@
273       cmd_wrap  =$(CONFIG_SHELL) $(wrapper) -Z $(compressor-y) -c -o $@ -p $2 \
274                 $(CROSSWRAP) $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) \
275                 vmlinux
276 
277 image-$(CONFIG_PPC_PSERIES)             += zImage.pseries
278 image-$(CONFIG_PPC_POWERNV)             += zImage.pseries
279 image-$(CONFIG_PPC_MAPLE)               += zImage.maple
280 image-$(CONFIG_PPC_IBM_CELL_BLADE)      += zImage.pseries
281 image-$(CONFIG_PPC_PS3)                 += dtbImage.ps3
282 image-$(CONFIG_PPC_CHRP)                += zImage.chrp
283 image-$(CONFIG_PPC_EFIKA)               += zImage.chrp
284 image-$(CONFIG_PPC_PMAC)                += zImage.pmac
285 image-$(CONFIG_PPC_HOLLY)               += dtbImage.holly
286 image-$(CONFIG_DEFAULT_UIMAGE)          += uImage
287 image-$(CONFIG_EPAPR_BOOT)              += zImage.epapr
288 
289 #
290 # Targets which embed a device tree blob
291 #
292 # Theses are default targets to build images which embed device tree blobs.
293 # They are only required on boards which do not have FDT support in firmware.
294 # Boards with newish u-boot firmware can use the uImage target above
295 #
296 
297 # Board ports in arch/powerpc/platform/44x/Kconfig
298 image-$(CONFIG_EBONY)                   += treeImage.ebony cuImage.ebony
299 image-$(CONFIG_BAMBOO)                  += treeImage.bamboo cuImage.bamboo
300 image-$(CONFIG_SAM440EP)                += cuImage.sam440ep
301 image-$(CONFIG_SEQUOIA)                 += cuImage.sequoia
302 image-$(CONFIG_RAINIER)                 += cuImage.rainier
303 image-$(CONFIG_TAISHAN)                 += cuImage.taishan
304 image-$(CONFIG_KATMAI)                  += cuImage.katmai
305 image-$(CONFIG_WARP)                    += cuImage.warp
306 image-$(CONFIG_YOSEMITE)                += cuImage.yosemite
307 image-$(CONFIG_ISS4xx)                  += treeImage.iss4xx \
308                                            treeImage.iss4xx-mpic
309 image-$(CONFIG_CURRITUCK)                       += treeImage.currituck
310 image-$(CONFIG_AKEBONO)                 += treeImage.akebono
311 
312 # Board ports in arch/powerpc/platform/8xx/Kconfig
313 image-$(CONFIG_MPC86XADS)               += cuImage.mpc866ads
314 image-$(CONFIG_MPC885ADS)               += cuImage.mpc885ads
315 image-$(CONFIG_PPC_EP88XC)              += dtbImage.ep88xc
316 image-$(CONFIG_PPC_ADDER875)            += cuImage.adder875-uboot \
317                                            dtbImage.adder875-redboot
318 
319 # Board ports in arch/powerpc/platform/52xx/Kconfig
320 image-$(CONFIG_PPC_LITE5200)            += cuImage.lite5200
321 image-$(CONFIG_PPC_LITE5200)            += cuImage.lite5200b
322 image-$(CONFIG_PPC_MEDIA5200)           += cuImage.media5200
323 
324 # Board ports in arch/powerpc/platform/82xx/Kconfig
325 image-$(CONFIG_EP8248E)                 += dtbImage.ep8248e
326 
327 # Board ports in arch/powerpc/platform/83xx/Kconfig
328 image-$(CONFIG_MPC832x_RDB)             += cuImage.mpc832x_rdb
329 image-$(CONFIG_MPC834x_ITX)             += cuImage.mpc8349emitx \
330                                            cuImage.mpc8349emitxgp
331 image-$(CONFIG_ASP834x)                 += dtbImage.asp834x-redboot
332 
333 # Board ports in arch/powerpc/platform/85xx/Kconfig
334 image-$(CONFIG_MPC85xx_MDS)             += cuImage.mpc8568mds
335 image-$(CONFIG_MPC85xx_DS)              += cuImage.mpc8544ds \
336                                            cuImage.mpc8572ds
337 image-$(CONFIG_TQM8540)                 += cuImage.tqm8540
338 image-$(CONFIG_TQM8541)                 += cuImage.tqm8541
339 image-$(CONFIG_TQM8548)                 += cuImage.tqm8548
340 image-$(CONFIG_TQM8555)                 += cuImage.tqm8555
341 image-$(CONFIG_TQM8560)                 += cuImage.tqm8560
342 image-$(CONFIG_KSI8560)                 += cuImage.ksi8560
343 
344 # Board ports in arch/powerpc/platform/86xx/Kconfig
345 image-$(CONFIG_MVME7100)                += dtbImage.mvme7100
346 
347 # Board ports in arch/powerpc/platform/embedded6xx/Kconfig
348 image-$(CONFIG_STORCENTER)              += cuImage.storcenter
349 image-$(CONFIG_GAMECUBE)                += dtbImage.gamecube
350 image-$(CONFIG_WII)                     += dtbImage.wii
351 image-$(CONFIG_MVME5100)                += dtbImage.mvme5100
352 
353 # Board port in arch/powerpc/platform/amigaone/Kconfig
354 image-$(CONFIG_AMIGAONE)                += cuImage.amigaone
355 
356 image-$(CONFIG_PPC_MICROWATT)           += dtbImage.microwatt
357 
358 # For 32-bit powermacs, build the COFF and miboot images
359 # as well as the ELF images.
360 ifdef CONFIG_PPC32
361 image-$(CONFIG_PPC_PMAC)        += zImage.coff zImage.miboot
362 endif
363 
364 # Allow extra targets to be added to the defconfig
365 image-y += $(CONFIG_EXTRA_TARGETS)
366 
367 initrd-  := $(patsubst zImage%, zImage.initrd%, $(image-))
368 initrd-y := $(patsubst zImage%, zImage.initrd%, \
369                 $(patsubst dtbImage%, dtbImage.initrd%, \
370                 $(patsubst simpleImage%, simpleImage.initrd%, \
371                 $(patsubst treeImage%, treeImage.initrd%, $(image-y)))))
372 initrd-y := $(filter-out $(image-y), $(initrd-y))
373 targets += $(image-y) $(initrd-y)
374 targets += $(foreach x, dtbImage uImage cuImage simpleImage treeImage, \
375                 $(patsubst $(x).%, dts/%.dtb, $(filter $(x).%, $(image-y))))
376 targets += $(foreach x, dtbImage uImage cuImage simpleImage treeImage, \
377                 $(patsubst $(x).%, dts/fsl/%.dtb, $(filter $(x).%, $(image-y))))
378 
379 $(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz
380 
381 # Don't put the ramdisk on the pattern rule; when its missing make will try
382 # the pattern rule with less dependencies that also matches (even with the
383 # hard dependency listed).
384 $(obj)/zImage.initrd.%: vmlinux $(wrapperbits) FORCE
385         $(call if_changed,wrap,$*,,,$(obj)/ramdisk.image.gz)
386 
387 $(addprefix $(obj)/, $(sort $(filter zImage.%, $(image-y)))): vmlinux $(wrapperbits) FORCE
388         $(call if_changed,wrap,$(subst $(obj)/zImage.,,$@))
389 
390 # dtbImage% - a dtbImage is a zImage with an embedded device tree blob
391 $(obj)/dtbImage.initrd.%: vmlinux $(wrapperbits) $(obj)/dts/%.dtb FORCE
392         $(call if_changed,wrap,$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
393 
394 $(obj)/dtbImage.%: vmlinux $(wrapperbits) $(obj)/dts/%.dtb FORCE
395         $(call if_changed,wrap,$*,,$(obj)/dts/$*.dtb)
396 
397 # This cannot be in the root of $(src) as the zImage rule always adds a $(obj)
398 # prefix
399 $(obj)/vmlinux.strip: vmlinux
400         $(STRIP) -s -R .comment $< -o $@
401 
402 $(obj)/uImage: vmlinux $(wrapperbits) FORCE
403         $(call if_changed,wrap,uboot)
404 
405 $(obj)/uImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
406         $(call if_changed,wrap,uboot-$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
407 
408 $(obj)/uImage.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
409         $(call if_changed,wrap,uboot-$*,,$(obj)/dts/$*.dtb)
410 
411 $(obj)/cuImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
412         $(call if_changed,wrap,cuboot-$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
413 
414 $(obj)/cuImage.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
415         $(call if_changed,wrap,cuboot-$*,,$(obj)/dts/$*.dtb)
416 
417 $(obj)/simpleImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
418         $(call if_changed,wrap,simpleboot-$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
419 
420 $(obj)/simpleImage.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
421         $(call if_changed,wrap,simpleboot-$*,,$(obj)/dts/$*.dtb)
422 
423 $(obj)/treeImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
424         $(call if_changed,wrap,treeboot-$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
425 
426 $(obj)/treeImage.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
427         $(call if_changed,wrap,treeboot-$*,,$(obj)/dts/$*.dtb)
428 
429 # Needed for the above targets to work with dts/fsl/ files
430 $(obj)/dts/%.dtb: $(obj)/dts/fsl/%.dtb
431         @cp $< $@
432 
433 # If there isn't a platform selected then just strip the vmlinux.
434 ifeq (,$(image-y))
435 image-y := vmlinux.strip
436 endif
437 
438 $(obj)/zImage:          $(addprefix $(obj)/, $(image-y))
439         $(Q)rm -f $@; ln $< $@
440 $(obj)/zImage.initrd:   $(addprefix $(obj)/, $(initrd-y))
441         $(Q)rm -f $@; ln $< $@
442 
443 # anything not in $(targets)
444 clean-files += $(image-) $(initrd-) cuImage.* dtbImage.* treeImage.* \
445         zImage zImage.initrd zImage.chrp zImage.coff zImage.holly \
446         zImage.miboot zImage.pmac zImage.pseries \
447         zImage.maple simpleImage.* otheros.bld
448 
449 # clean up files cached by wrapper
450 clean-kernel-base := vmlinux.strip vmlinux.bin
451 clean-kernel := $(addsuffix .gz,$(clean-kernel-base))
452 clean-kernel += $(addsuffix .xz,$(clean-kernel-base))
453 # clean-files are relative to $(obj).
454 clean-files += $(addprefix ../../../, $(clean-kernel))
455 
456 WRAPPER_OBJDIR := /usr/lib/kernel-wrapper
457 WRAPPER_DTSDIR := /usr/lib/kernel-wrapper/dts
458 WRAPPER_BINDIR := /usr/sbin
459 INSTALL := install
460 
461 extra-installed         := $(patsubst $(obj)/%, $(DESTDIR)$(WRAPPER_OBJDIR)/%, $(extra-y))
462 hostprogs-installed     := $(patsubst %, $(DESTDIR)$(WRAPPER_BINDIR)/%, $(hostprogs))
463 wrapper-installed       := $(DESTDIR)$(WRAPPER_BINDIR)/wrapper
464 dts-installed           := $(patsubst $(dtstree)/%, $(DESTDIR)$(WRAPPER_DTSDIR)/%, $(wildcard $(dtstree)/*.dts))
465 
466 all-installed           := $(extra-installed) $(hostprogs-installed) $(wrapper-installed) $(dts-installed)
467 
468 quiet_cmd_mkdir           = MKDIR   $(patsubst $(INSTALL_HDR_PATH)/%,%,$@)
469       cmd_mkdir           = mkdir -p $@
470 
471 quiet_cmd_install         = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,%,$@)
472       cmd_install         = $(INSTALL)  -m0644 $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,$(obj)/%,$@) $@
473 
474 quiet_cmd_install_dts     = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,dts/%,$@)
475       cmd_install_dts     = $(INSTALL)  -m0644 $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,$(srctree)/$(obj)/dts/%,$@) $@
476 
477 quiet_cmd_install_exe     = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@)
478       cmd_install_exe     = $(INSTALL)  -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(obj)/%,$@) $@
479 
480 quiet_cmd_install_wrapper = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@)
481       cmd_install_wrapper = $(INSTALL)  -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(srctree)/$(obj)/%,$@) $@ ;\
482                                 sed -i $@ -e 's%^object=.*%object=$(WRAPPER_OBJDIR)%' \
483                                           -e 's%^objbin=.*%objbin=$(WRAPPER_BINDIR)%' \
484 
485 
486 $(DESTDIR)$(WRAPPER_OBJDIR) $(DESTDIR)$(WRAPPER_DTSDIR) $(DESTDIR)$(WRAPPER_BINDIR):
487         $(call cmd,mkdir)
488 
489 $(extra-installed)      : $(DESTDIR)$(WRAPPER_OBJDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_OBJDIR)
490         $(call cmd,install)
491 
492 $(hostprogs-installed)  : $(DESTDIR)$(WRAPPER_BINDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_BINDIR)
493         $(call cmd,install_exe)
494 
495 $(dts-installed)        : $(DESTDIR)$(WRAPPER_DTSDIR)/% : $(srctree)/$(obj)/dts/% | $(DESTDIR)$(WRAPPER_DTSDIR)
496         $(call cmd,install_dts)
497 
498 $(wrapper-installed): $(DESTDIR)$(WRAPPER_BINDIR) $(srctree)/$(obj)/wrapper | $(DESTDIR)$(WRAPPER_BINDIR)
499         $(call cmd,install_wrapper)
500 
501 $(obj)/bootwrapper_install: $(all-installed)

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php