1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for making ELF bootable images for booting on CHRP
5 # Geert Uytterhoeven September 1997
7 # Based on coffboot by Paul Mackerras
8 # Simplified for ppc64 by Todd Inglett
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.
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.
24 ifdef CONFIG_CC_IS_CLANG
25 BOOTCC
:= $(CROSS32_COMPILE
)clang
27 BOOTCC
:= $(CROSS32_COMPILE
)gcc
29 BOOTAR
:= $(CROSS32_COMPILE
)ar
35 BOOTCFLAGS
:= -Wall
-Wundef
-Wstrict-prototypes
-Wno-trigraphs \
36 -fno-strict-aliasing
-O2
-msoft-float
-mno-altivec
-mno-vsx \
37 -pipe
-fomit-frame-pointer
-fno-builtin
-fPIC
-nostdinc \
38 -include $(srctree
)/include/linux
/compiler_attributes.h \
41 ifdef CONFIG_PPC64_BOOT_WRAPPER
47 BOOTCFLAGS
+= -isystem
$(shell $(BOOTCC
) -print-file-name
=include)
49 ifdef CONFIG_CPU_BIG_ENDIAN
50 BOOTCFLAGS
+= -mbig-endian
52 BOOTCFLAGS
+= -mlittle-endian
53 BOOTCFLAGS
+= $(call cc-option
,-mabi
=elfv2
)
56 BOOTAFLAGS
:= -D__ASSEMBLY__
$(BOOTCFLAGS
) -nostdinc
60 ifdef CONFIG_CC_IS_CLANG
61 BOOTCFLAGS
+= $(CLANG_FLAGS
)
62 BOOTAFLAGS
+= $(CLANG_FLAGS
)
65 ifdef CONFIG_DEBUG_INFO
69 ifeq ($(call cc-option-yn
, -fstack-protector
),y
)
70 BOOTCFLAGS
+= -fno-stack-protector
73 BOOTCFLAGS
+= -I
$(objtree
)/$(obj
) -I
$(srctree
)/$(obj
)
77 $(obj
)/4xx.o
: BOOTCFLAGS
+= -mcpu
=405
78 $(obj
)/ebony.o
: BOOTCFLAGS
+= -mcpu
=440
79 $(obj
)/cuboot-hotfoot.o
: BOOTCFLAGS
+= -mcpu
=405
80 $(obj
)/cuboot-taishan.o
: BOOTCFLAGS
+= -mcpu
=440
81 $(obj
)/cuboot-katmai.o
: BOOTCFLAGS
+= -mcpu
=440
82 $(obj
)/cuboot-acadia.o
: BOOTCFLAGS
+= -mcpu
=405
83 $(obj
)/treeboot-iss4xx.o
: BOOTCFLAGS
+= -mcpu
=405
84 $(obj
)/treeboot-currituck.o
: BOOTCFLAGS
+= -mcpu
=405
85 $(obj
)/treeboot-akebono.o
: BOOTCFLAGS
+= -mcpu
=405
87 # The pre-boot decompressors pull in a lot of kernel headers and other source
88 # files. This creates a bit of a dependency headache since we need to copy
89 # these files into the build dir, fix up any includes and ensure that dependent
90 # files are copied in the right order.
92 # these need to be seperate variables because they are copied out of different
93 # directories in the kernel tree. Sure you COULd merge them, but it's a
94 # cure-is-worse-than-disease situation.
95 zlib-decomp-
$(CONFIG_KERNEL_GZIP
) := decompress_inflate.c
96 zlib-
$(CONFIG_KERNEL_GZIP
) := inffast.c inflate.c inftrees.c
97 zlibheader-
$(CONFIG_KERNEL_GZIP
) := inffast.h inffixed.h inflate.h inftrees.h infutil.h
98 zliblinuxheader-
$(CONFIG_KERNEL_GZIP
) := zlib.h zconf.h zutil.h
100 $(addprefix $(obj
)/, decompress.o
): \
101 $(addprefix $(obj
)/,$(zlib-decomp-y
))
103 $(addprefix $(obj
)/, $(zlib-decomp-y
)): \
104 $(addprefix $(obj
)/,$(zliblinuxheader-y
)) \
105 $(addprefix $(obj
)/,$(zlibheader-y
)) \
106 $(addprefix $(obj
)/,$(zlib-y
))
108 $(addprefix $(obj
)/,$(zlib-y
)): \
109 $(addprefix $(obj
)/,$(zliblinuxheader-y
)) \
110 $(addprefix $(obj
)/,$(zlibheader-y
))
112 libfdt
:= fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c
113 libfdtheader
:= fdt.h libfdt.h libfdt_internal.h
115 $(addprefix $(obj
)/,$(libfdt
) libfdt-wrapper.o simpleboot.o epapr.o opal.o \
116 treeboot-akebono.o treeboot-currituck.o treeboot-iss4xx.o
): \
117 $(addprefix $(obj
)/,$(libfdtheader
))
119 src-wlib-y
:= string.S crt0.S stdio.c decompress.c main.c \
120 $(libfdt
) libfdt-wrapper.c \
121 ns16550.c serial.c simple_alloc.c div64.S util.S \
122 elf_util.c
$(zlib-y
) devtree.c stdlib.c \
123 oflib.c ofconsole.c cuboot.c
125 src-wlib-
$(CONFIG_PPC_MPC52xx
) += mpc52xx-psc.c
126 src-wlib-
$(CONFIG_PPC64_BOOT_WRAPPER
) += opal-calls.S opal.c
127 ifndef CONFIG_PPC64_BOOT_WRAPPER
128 src-wlib-y
+= crtsavres.S
130 src-wlib-
$(CONFIG_40x
) += 4xx.c planetcore.c
131 src-wlib-
$(CONFIG_44x
) += 4xx.c ebony.c bamboo.c
132 src-wlib-
$(CONFIG_PPC_8xx
) += mpc8xx.c planetcore.c fsl-soc.c
133 src-wlib-
$(CONFIG_PPC_82xx
) += pq2.c fsl-soc.c planetcore.c
134 src-wlib-
$(CONFIG_EMBEDDED6xx
) += ugecon.c fsl-soc.c
135 src-wlib-
$(CONFIG_CPM
) += cpm-serial.c
137 src-plat-y
:= of.c epapr.c
138 src-plat-
$(CONFIG_40x
) += fixed-head.S cuboot-hotfoot.c \
140 cuboot-kilauea.c simpleboot.c
141 src-plat-
$(CONFIG_44x
) += treeboot-ebony.c cuboot-ebony.c treeboot-bamboo.c \
142 cuboot-bamboo.c cuboot-sam440ep.c \
143 cuboot-sequoia.c cuboot-rainier.c \
144 cuboot-taishan.c cuboot-katmai.c \
145 cuboot-warp.c cuboot-yosemite.c \
146 treeboot-iss4xx.c treeboot-currituck.c \
148 simpleboot.c fixed-head.S
149 src-plat-
$(CONFIG_PPC_8xx
) += cuboot-8xx.c fixed-head.S ep88xc.c redboot-8xx.c
150 src-plat-
$(CONFIG_PPC_MPC52xx
) += cuboot-52xx.c
151 src-plat-
$(CONFIG_PPC_82xx
) += cuboot-pq2.c fixed-head.S ep8248e.c cuboot-824x.c
152 src-plat-
$(CONFIG_PPC_83xx
) += cuboot-83xx.c fixed-head.S redboot-83xx.c
153 src-plat-
$(CONFIG_FSL_SOC_BOOKE
) += cuboot-85xx.c cuboot-85xx-cpm2.c
154 src-plat-
$(CONFIG_EMBEDDED6xx
) += cuboot-pq2.c cuboot-mpc7448hpc2.c \
155 gamecube-head.S gamecube.c \
156 wii-head.S wii.c holly.c \
157 fixed-head.S mvme5100.c
158 src-plat-
$(CONFIG_AMIGAONE
) += cuboot-amigaone.c
159 src-plat-
$(CONFIG_PPC_PS3
) += ps3-head.S ps3-hvcall.S ps3.c
160 src-plat-
$(CONFIG_EPAPR_BOOT
) += epapr.c epapr-wrapper.c
161 src-plat-
$(CONFIG_PPC_PSERIES
) += pseries-head.S
162 src-plat-
$(CONFIG_PPC_POWERNV
) += pseries-head.S
163 src-plat-
$(CONFIG_PPC_IBM_CELL_BLADE
) += pseries-head.S
164 src-plat-
$(CONFIG_MVME7100
) += motload-head.S mvme7100.c
166 src-wlib
:= $(sort $(src-wlib-y
))
167 src-plat
:= $(sort $(src-plat-y
))
168 src-boot
:= $(src-wlib
) $(src-plat
) empty.c
170 src-boot
:= $(addprefix $(obj
)/, $(src-boot
))
171 obj-boot
:= $(addsuffix .o
, $(basename $(src-boot
)))
172 obj-wlib
:= $(addsuffix .o
, $(basename $(addprefix $(obj
)/, $(src-wlib
))))
173 obj-plat
:= $(addsuffix .o
, $(basename $(addprefix $(obj
)/, $(src-plat
))))
176 quiet_cmd_copy_kern_src
= COPY
$@
177 cmd_copy_kern_src
= sed
-f
$(srctree
)/arch
/powerpc
/boot
/fixup-headers.sed
$< > $@
179 $(addprefix $(obj
)/,$(zlib-y
)): $(obj
)/%: $(srctree
)/lib
/zlib_inflate
/%
180 $(call cmd
,copy_kern_src
)
182 $(addprefix $(obj
)/,$(zlibheader-y
)): $(obj
)/%: $(srctree
)/lib
/zlib_inflate
/%
183 $(call cmd
,copy_kern_src
)
185 $(addprefix $(obj
)/,$(zliblinuxheader-y
)): $(obj
)/%: $(srctree
)/include/linux
/%
186 $(call cmd
,copy_kern_src
)
188 $(addprefix $(obj
)/,$(zlib-decomp-y
)): $(obj
)/%: $(srctree
)/lib
/%
189 $(call cmd
,copy_kern_src
)
191 quiet_cmd_copy_libfdt
= COPY
$@
192 cmd_copy_libfdt
= cp
$< $@
194 $(addprefix $(obj
)/,$(libfdt
) $(libfdtheader
)): $(obj
)/%: $(srctree
)/scripts
/dtc
/libfdt
/%
195 $(call cmd
,copy_libfdt
)
200 $(obj
)/zImage.coff.lds
$(obj
)/zImage.ps3.lds
: $(obj
)/%: $(srctree
)/$(src
)/%.S
203 clean-files
:= $(zlib-
) $(zlibheader-
) $(zliblinuxheader-
) \
204 $(zlib-decomp-
) $(libfdt
) $(libfdtheader
) \
205 empty.c zImage.coff.lds zImage.ps3.lds zImage.lds
207 quiet_cmd_bootcc
= BOOTCC
$@
208 cmd_bootcc
= $(BOOTCC
) -Wp
,-MD
,$(depfile
) $(BOOTCFLAGS
) -c
-o
$@
$<
210 quiet_cmd_bootas
= BOOTAS
$@
211 cmd_bootas
= $(BOOTCC
) -Wp
,-MD
,$(depfile
) $(BOOTAFLAGS
) -c
-o
$@
$<
213 quiet_cmd_bootar
= BOOTAR
$@
214 cmd_bootar
= $(BOOTAR
) $(BOOTARFLAGS
) $@.
$$$$ $(real-prereqs
); mv
$@.
$$$$ $@
216 $(obj-libfdt
): $(obj
)/%.o
: $(srctree
)/scripts
/dtc
/libfdt
/%.c FORCE
217 $(call if_changed_dep
,bootcc
)
218 $(patsubst %.c
,%.o
, $(filter %.c
, $(src-boot
))): %.o
: %.c FORCE
219 $(Q
)mkdir
-p
$(dir $@
)
220 $(call if_changed_dep
,bootcc
)
221 $(patsubst %.S
,%.o
, $(filter %.S
, $(src-boot
))): %.o
: %.S FORCE
222 $(Q
)mkdir
-p
$(dir $@
)
223 $(call if_changed_dep
,bootas
)
225 $(obj
)/wrapper.a
: $(obj-wlib
) FORCE
226 $(call if_changed
,bootar
)
228 hostprogs
:= addnote hack-coff mktree
230 targets
+= $(patsubst $(obj
)/%,%,$(obj-boot
) wrapper.a
)
231 extra-y
:= $(obj
)/wrapper.a
$(obj-plat
) $(obj
)/empty.o \
232 $(obj
)/zImage.lds
$(obj
)/zImage.coff.lds
$(obj
)/zImage.ps3.lds
234 dtstree
:= $(srctree
)/$(src
)/dts
236 wrapper
:=$(srctree
)/$(src
)/wrapper
237 wrapperbits
:= $(extra-y
) $(addprefix $(obj
)/,addnote hack-coff mktree
) \
241 # Bits for building various flavours of zImage
243 ifneq ($(CROSS32_COMPILE
),)
244 CROSSWRAP
:= -C
"$(CROSS32_COMPILE)"
246 ifneq ($(CROSS_COMPILE
),)
247 CROSSWRAP
:= -C
"$(CROSS_COMPILE)"
251 compressor-
$(CONFIG_KERNEL_GZIP
) := gz
252 compressor-
$(CONFIG_KERNEL_XZ
) := xz
253 compressor-
$(CONFIG_KERNEL_LZMA
) := lzma
254 compressor-
$(CONFIG_KERNEL_LZO
) := lzo
256 # args (to if_changed): 1 = (this rule), 2 = platform, 3 = dts 4=dtb 5=initrd
257 quiet_cmd_wrap
= WRAP
$@
258 cmd_wrap
=$(CONFIG_SHELL
) $(wrapper
) -Z
$(compressor-y
) -c
-o
$@
-p
$2 \
259 $(CROSSWRAP
) $(if
$3, -s
$3)$(if
$4, -d
$4)$(if
$5, -i
$5) \
262 image-
$(CONFIG_PPC_PSERIES
) += zImage.pseries
263 image-
$(CONFIG_PPC_POWERNV
) += zImage.pseries
264 image-
$(CONFIG_PPC_MAPLE
) += zImage.maple
265 image-
$(CONFIG_PPC_IBM_CELL_BLADE
) += zImage.pseries
266 image-
$(CONFIG_PPC_PS3
) += dtbImage.ps3
267 image-
$(CONFIG_PPC_CHRP
) += zImage.chrp
268 image-
$(CONFIG_PPC_EFIKA
) += zImage.chrp
269 image-
$(CONFIG_PPC_PMAC
) += zImage.pmac
270 image-
$(CONFIG_PPC_HOLLY
) += dtbImage.holly
271 image-
$(CONFIG_DEFAULT_UIMAGE
) += uImage
272 image-
$(CONFIG_EPAPR_BOOT
) += zImage.epapr
275 # Targets which embed a device tree blob
277 # Theses are default targets to build images which embed device tree blobs.
278 # They are only required on boards which do not have FDT support in firmware.
279 # Boards with newish u-boot firmware can use the uImage target above
282 # Board ports in arch/powerpc/platform/40x/Kconfig
283 image-
$(CONFIG_HOTFOOT
) += cuImage.hotfoot
284 image-
$(CONFIG_ACADIA
) += cuImage.acadia
285 image-
$(CONFIG_OBS600
) += uImage.obs600
287 # Board ports in arch/powerpc/platform/44x/Kconfig
288 image-
$(CONFIG_EBONY
) += treeImage.ebony cuImage.ebony
289 image-
$(CONFIG_BAMBOO
) += treeImage.bamboo cuImage.bamboo
290 image-
$(CONFIG_SAM440EP
) += cuImage.sam440ep
291 image-
$(CONFIG_SEQUOIA
) += cuImage.sequoia
292 image-
$(CONFIG_RAINIER
) += cuImage.rainier
293 image-
$(CONFIG_TAISHAN
) += cuImage.taishan
294 image-
$(CONFIG_KATMAI
) += cuImage.katmai
295 image-
$(CONFIG_WARP
) += cuImage.warp
296 image-
$(CONFIG_YOSEMITE
) += cuImage.yosemite
297 image-
$(CONFIG_ISS4xx
) += treeImage.iss4xx \
298 treeImage.iss4xx-mpic
299 image-
$(CONFIG_CURRITUCK
) += treeImage.currituck
300 image-
$(CONFIG_AKEBONO
) += treeImage.akebono
302 # Board ports in arch/powerpc/platform/8xx/Kconfig
303 image-
$(CONFIG_MPC86XADS
) += cuImage.mpc866ads
304 image-
$(CONFIG_MPC885ADS
) += cuImage.mpc885ads
305 image-
$(CONFIG_PPC_EP88XC
) += dtbImage.ep88xc
306 image-
$(CONFIG_PPC_ADDER875
) += cuImage.adder875-uboot \
307 dtbImage.adder875-redboot
309 # Board ports in arch/powerpc/platform/52xx/Kconfig
310 image-
$(CONFIG_PPC_LITE5200
) += cuImage.lite5200
311 image-
$(CONFIG_PPC_LITE5200
) += cuImage.lite5200b
312 image-
$(CONFIG_PPC_MEDIA5200
) += cuImage.media5200
314 # Board ports in arch/powerpc/platform/82xx/Kconfig
315 image-
$(CONFIG_MPC8272_ADS
) += cuImage.mpc8272ads
316 image-
$(CONFIG_PQ2FADS
) += cuImage.pq2fads
317 image-
$(CONFIG_EP8248E
) += dtbImage.ep8248e
319 # Board ports in arch/powerpc/platform/83xx/Kconfig
320 image-
$(CONFIG_MPC832x_MDS
) += cuImage.mpc832x_mds
321 image-
$(CONFIG_MPC832x_RDB
) += cuImage.mpc832x_rdb
322 image-
$(CONFIG_MPC834x_ITX
) += cuImage.mpc8349emitx \
323 cuImage.mpc8349emitxgp
324 image-
$(CONFIG_MPC834x_MDS
) += cuImage.mpc834x_mds
325 image-
$(CONFIG_MPC836x_MDS
) += cuImage.mpc836x_mds
326 image-
$(CONFIG_ASP834x
) += dtbImage.asp834x-redboot
328 # Board ports in arch/powerpc/platform/85xx/Kconfig
329 image-
$(CONFIG_MPC8540_ADS
) += cuImage.mpc8540ads
330 image-
$(CONFIG_MPC8560_ADS
) += cuImage.mpc8560ads
331 image-
$(CONFIG_MPC85xx_CDS
) += cuImage.mpc8541cds \
332 cuImage.mpc8548cds_32b \
334 image-
$(CONFIG_MPC85xx_MDS
) += cuImage.mpc8568mds
335 image-
$(CONFIG_MPC85xx_DS
) += cuImage.mpc8544ds \
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_SBC8548
) += cuImage.sbc8548
343 image-
$(CONFIG_KSI8560
) += cuImage.ksi8560
345 # Board ports in arch/powerpc/platform/86xx/Kconfig
346 image-
$(CONFIG_MVME7100
) += dtbImage.mvme7100
348 # Board ports in arch/powerpc/platform/embedded6xx/Kconfig
349 image-
$(CONFIG_STORCENTER
) += cuImage.storcenter
350 image-
$(CONFIG_MPC7448HPC2
) += cuImage.mpc7448hpc2
351 image-
$(CONFIG_GAMECUBE
) += dtbImage.gamecube
352 image-
$(CONFIG_WII
) += dtbImage.wii
353 image-
$(CONFIG_MVME5100
) += dtbImage.mvme5100
355 # Board port in arch/powerpc/platform/amigaone/Kconfig
356 image-
$(CONFIG_AMIGAONE
) += cuImage.amigaone
358 # For 32-bit powermacs, build the COFF and miboot images
359 # as well as the ELF images.
361 image-
$(CONFIG_PPC_PMAC
) += zImage.coff zImage.miboot
364 # Allow extra targets to be added to the defconfig
365 image-y
+= $(subst ",,$(CONFIG_EXTRA_TARGETS))
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))))
379 $(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz
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)
387 $(addprefix $(obj)/, $(sort $(filter zImage.%, $(image-y)))): vmlinux $(wrapperbits) FORCE
388 $(call if_changed,wrap,$(subst $(obj)/zImage.,,$@))
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)
394 $(obj)/dtbImage.%: vmlinux $(wrapperbits) $(obj)/dts/%.dtb FORCE
395 $(call if_changed,wrap,$*,,$(obj)/dts/$*.dtb)
397 # This cannot be in the root of $(src) as the zImage rule always adds a $(obj)
399 $(obj)/vmlinux.strip: vmlinux
400 $(STRIP) -s -R .comment $< -o $@
402 $(obj)/uImage: vmlinux $(wrapperbits) FORCE
403 $(call if_changed,wrap,uboot)
405 $(obj)/uImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
406 $(call if_changed,wrap,uboot-$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
408 $(obj)/uImage.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
409 $(call if_changed,wrap,uboot-$*,,$(obj)/dts/$*.dtb)
411 $(obj)/cuImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
412 $(call if_changed,wrap,cuboot-$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
414 $(obj)/cuImage.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
415 $(call if_changed,wrap,cuboot-$*,,$(obj)/dts/$*.dtb)
417 $(obj)/simpleImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
418 $(call if_changed,wrap,simpleboot-$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
420 $(obj)/simpleImage.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
421 $(call if_changed,wrap,simpleboot-$*,,$(obj)/dts/$*.dtb)
423 $(obj)/treeImage.initrd.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
424 $(call if_changed,wrap,treeboot-$*,,$(obj)/dts/$*.dtb,$(obj)/ramdisk.image.gz)
426 $(obj)/treeImage.%: vmlinux $(obj)/dts/%.dtb $(wrapperbits) FORCE
427 $(call if_changed,wrap,treeboot-$*,,$(obj)/dts/$*.dtb)
429 # Needed for the above targets to work with dts/fsl/ files
430 $(obj)/dts/%.dtb: $(obj)/dts/fsl/%.dtb
433 # If there isn't a platform selected then just strip the vmlinux.
435 image-y := vmlinux.strip
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 $< $@
443 # Only install the vmlinux
444 install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
445 sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE
)" vmlinux System.map "$(INSTALL_PATH
)"
447 # Install the vmlinux and other built boot targets.
448 zInstall: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
449 sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE
)" vmlinux System.map "$(INSTALL_PATH
)" $^
451 PHONY += install zInstall
453 # anything not in $(targets)
454 clean-files += $(image-) $(initrd-) cuImage.* dtbImage.* treeImage.* \
455 zImage zImage.initrd zImage.chrp zImage.coff zImage.holly \
456 zImage.miboot zImage.pmac zImage.pseries \
457 zImage.maple simpleImage.* otheros.bld
459 # clean up files cached by wrapper
460 clean-kernel-base := vmlinux.strip vmlinux.bin
461 clean-kernel := $(addsuffix .gz,$(clean-kernel-base))
462 clean-kernel += $(addsuffix .xz,$(clean-kernel-base))
463 # If not absolute clean-files are relative to $(obj).
464 clean-files += $(addprefix $(objtree)/, $(clean-kernel))
466 WRAPPER_OBJDIR := /usr/lib/kernel-wrapper
467 WRAPPER_DTSDIR := /usr/lib/kernel-wrapper/dts
468 WRAPPER_BINDIR := /usr/sbin
471 extra-installed := $(patsubst $(obj)/%, $(DESTDIR)$(WRAPPER_OBJDIR)/%, $(extra-y))
472 hostprogs-installed := $(patsubst %, $(DESTDIR)$(WRAPPER_BINDIR)/%, $(hostprogs))
473 wrapper-installed := $(DESTDIR)$(WRAPPER_BINDIR)/wrapper
474 dts-installed := $(patsubst $(dtstree)/%, $(DESTDIR)$(WRAPPER_DTSDIR)/%, $(wildcard $(dtstree)/*.dts))
476 all-installed := $(extra-installed) $(hostprogs-installed) $(wrapper-installed) $(dts-installed)
478 quiet_cmd_mkdir = MKDIR $(patsubst $(INSTALL_HDR_PATH)/%,%,$@)
479 cmd_mkdir = mkdir -p $@
481 quiet_cmd_install = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,%,$@)
482 cmd_install = $(INSTALL) -m0644 $(patsubst $(DESTDIR)$(WRAPPER_OBJDIR)/%,$(obj)/%,$@) $@
484 quiet_cmd_install_dts = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,dts/%,$@)
485 cmd_install_dts = $(INSTALL) -m0644 $(patsubst $(DESTDIR)$(WRAPPER_DTSDIR)/%,$(srctree)/$(obj)/dts/%,$@) $@
487 quiet_cmd_install_exe = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@)
488 cmd_install_exe = $(INSTALL) -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(obj)/%,$@) $@
490 quiet_cmd_install_wrapper = INSTALL $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,%,$@)
491 cmd_install_wrapper = $(INSTALL) -m0755 $(patsubst $(DESTDIR)$(WRAPPER_BINDIR)/%,$(srctree)/$(obj)/%,$@) $@ ;\
492 sed -i $@ -e 's%^object=.*%object=$(WRAPPER_OBJDIR)%' \
493 -e 's%^objbin=.*%objbin=$(WRAPPER_BINDIR)%' \
496 $(DESTDIR)$(WRAPPER_OBJDIR) $(DESTDIR)$(WRAPPER_DTSDIR) $(DESTDIR)$(WRAPPER_BINDIR):
499 $(extra-installed) : $(DESTDIR)$(WRAPPER_OBJDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_OBJDIR)
502 $(hostprogs-installed) : $(DESTDIR)$(WRAPPER_BINDIR)/% : $(obj)/% | $(DESTDIR)$(WRAPPER_BINDIR)
503 $(call cmd,install_exe)
505 $(dts-installed) : $(DESTDIR)$(WRAPPER_DTSDIR)/% : $(srctree)/$(obj)/dts/% | $(DESTDIR)$(WRAPPER_DTSDIR)
506 $(call cmd,install_dts)
508 $(wrapper-installed): $(DESTDIR)$(WRAPPER_BINDIR) $(srctree)/$(obj)/wrapper | $(DESTDIR)$(WRAPPER_BINDIR)
509 $(call cmd,install_wrapper)
511 $(obj)/bootwrapper_install: $(all-installed)