Makefile (f259fb893c69d60ac1c7192f1974635c554fd716) Makefile (d92cc4d5164398cc6d191084b46e622976c0ba89)
1# This file is included by the global makefile so that you can add your own
2# architecture-specific flags and dependencies. Remember to do have actions
3# for "archclean" and "archdep" for cleaning up and making dependencies for
4# this architecture.
5#
6# This file is subject to the terms and conditions of the GNU General Public
7# License. See the file "COPYING" in the main directory of this archive
8# for more details.

--- 253 unchanged lines hidden (view full) ---

262head-$(CONFIG_44x) := arch/powerpc/kernel/head_44x.o
263head-$(CONFIG_FSL_BOOKE) := arch/powerpc/kernel/head_fsl_booke.o
264
265head-$(CONFIG_PPC64) += arch/powerpc/kernel/entry_64.o
266head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o
267head-$(CONFIG_ALTIVEC) += arch/powerpc/kernel/vector.o
268head-$(CONFIG_PPC_OF_BOOT_TRAMPOLINE) += arch/powerpc/kernel/prom_init.o
269
1# This file is included by the global makefile so that you can add your own
2# architecture-specific flags and dependencies. Remember to do have actions
3# for "archclean" and "archdep" for cleaning up and making dependencies for
4# this architecture.
5#
6# This file is subject to the terms and conditions of the GNU General Public
7# License. See the file "COPYING" in the main directory of this archive
8# for more details.

--- 253 unchanged lines hidden (view full) ---

262head-$(CONFIG_44x) := arch/powerpc/kernel/head_44x.o
263head-$(CONFIG_FSL_BOOKE) := arch/powerpc/kernel/head_fsl_booke.o
264
265head-$(CONFIG_PPC64) += arch/powerpc/kernel/entry_64.o
266head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o
267head-$(CONFIG_ALTIVEC) += arch/powerpc/kernel/vector.o
268head-$(CONFIG_PPC_OF_BOOT_TRAMPOLINE) += arch/powerpc/kernel/prom_init.o
269
270# See arch/powerpc/Kbuild for content of core part of the kernel
271core-y += arch/powerpc/
272
273# Default to zImage, override when needed
274all: zImage
275
276# With make 3.82 we cannot mix normal and wildcard targets
277BOOT_TARGETS1 := zImage zImage.initrd uImage
278BOOT_TARGETS2 := zImage% dtbImage% treeImage.% cuImage.% simpleImage.% uImage.%
279
280PHONY += $(BOOT_TARGETS1) $(BOOT_TARGETS2)

--- 90 unchanged lines hidden (view full) ---

371 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/ppc64le.config \
372 -f $(srctree)/Makefile allnoconfig
373
374PHONY += ppc64_book3e_allmodconfig
375ppc64_book3e_allmodconfig:
376 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/85xx-64bit.config \
377 -f $(srctree)/Makefile allmodconfig
378
270# Default to zImage, override when needed
271all: zImage
272
273# With make 3.82 we cannot mix normal and wildcard targets
274BOOT_TARGETS1 := zImage zImage.initrd uImage
275BOOT_TARGETS2 := zImage% dtbImage% treeImage.% cuImage.% simpleImage.% uImage.%
276
277PHONY += $(BOOT_TARGETS1) $(BOOT_TARGETS2)

--- 90 unchanged lines hidden (view full) ---

368 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/ppc64le.config \
369 -f $(srctree)/Makefile allnoconfig
370
371PHONY += ppc64_book3e_allmodconfig
372ppc64_book3e_allmodconfig:
373 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/85xx-64bit.config \
374 -f $(srctree)/Makefile allmodconfig
375
379PHONY += ppc32_randconfig
380ppc32_randconfig:
381 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/32-bit.config \
382 -f $(srctree)/Makefile randconfig
383
384PHONY += ppc64_randconfig
385ppc64_randconfig:
386 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/powerpc/configs/64-bit.config \
387 -f $(srctree)/Makefile randconfig
388
389define archhelp
390 @echo '* zImage - Build default images selected by kernel config'
391 @echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)'
392 @echo ' uImage - U-Boot native image format'
393 @echo ' cuImage.<dt> - Backwards compatible U-Boot image for older'
394 @echo ' versions which do not support device trees'
395 @echo ' dtbImage.<dt> - zImage with an embedded device tree blob'
396 @echo ' simpleImage.<dt> - Firmware independent image.'

--- 75 unchanged lines hidden ---
376define archhelp
377 @echo '* zImage - Build default images selected by kernel config'
378 @echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)'
379 @echo ' uImage - U-Boot native image format'
380 @echo ' cuImage.<dt> - Backwards compatible U-Boot image for older'
381 @echo ' versions which do not support device trees'
382 @echo ' dtbImage.<dt> - zImage with an embedded device tree blob'
383 @echo ' simpleImage.<dt> - Firmware independent image.'

--- 75 unchanged lines hidden ---