Makefile (64dbc4dd7a7cc6642c522963a6194b62480e2a68) | Makefile (f774f5bb87d132b48bc4a99598c45f35121ac054) |
---|---|
1# 2# arch/arm/Makefile 3# 4# This file is included by the global makefile so that you can add your own 5# architecture-specific flags and dependencies. 6# 7# This file is subject to the terms and conditions of the GNU General Public 8# License. See the file "COPYING" in the main directory of this archive --- 216 unchanged lines hidden (view full) --- 225machine-$(CONFIG_ARCH_VT8500) += vt8500 226machine-$(CONFIG_ARCH_ZYNQ) += zynq 227machine-$(CONFIG_PLAT_SPEAR) += spear 228 229# Platform directory name. This list is sorted alphanumerically 230# by CONFIG_* macro name. 231plat-$(CONFIG_ARCH_OMAP) += omap 232plat-$(CONFIG_PLAT_ORION) += orion | 1# 2# arch/arm/Makefile 3# 4# This file is included by the global makefile so that you can add your own 5# architecture-specific flags and dependencies. 6# 7# This file is subject to the terms and conditions of the GNU General Public 8# License. See the file "COPYING" in the main directory of this archive --- 216 unchanged lines hidden (view full) --- 225machine-$(CONFIG_ARCH_VT8500) += vt8500 226machine-$(CONFIG_ARCH_ZYNQ) += zynq 227machine-$(CONFIG_PLAT_SPEAR) += spear 228 229# Platform directory name. This list is sorted alphanumerically 230# by CONFIG_* macro name. 231plat-$(CONFIG_ARCH_OMAP) += omap 232plat-$(CONFIG_PLAT_ORION) += orion |
233plat-$(CONFIG_PLAT_PXA) += pxa |
|
233plat-$(CONFIG_PLAT_VERSATILE) += versatile 234 235# The byte offset of the kernel image in RAM from the start of RAM. 236TEXT_OFFSET := $(textofs-y) 237 238# The first directory contains additional information for the boot setup code 239ifneq ($(machine-y),) 240MACHINE := arch/arm/mach-$(word 1,$(machine-y))/ --- 71 unchanged lines hidden (view full) --- 312 313bootpImage uImage: zImage 314zImage: Image 315 316$(BOOT_TARGETS): vmlinux 317 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ 318 @$(kecho) ' Kernel: $(boot)/$@ is ready' 319 | 234plat-$(CONFIG_PLAT_VERSATILE) += versatile 235 236# The byte offset of the kernel image in RAM from the start of RAM. 237TEXT_OFFSET := $(textofs-y) 238 239# The first directory contains additional information for the boot setup code 240ifneq ($(machine-y),) 241MACHINE := arch/arm/mach-$(word 1,$(machine-y))/ --- 71 unchanged lines hidden (view full) --- 313 314bootpImage uImage: zImage 315zImage: Image 316 317$(BOOT_TARGETS): vmlinux 318 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ 319 @$(kecho) ' Kernel: $(boot)/$@ is ready' 320 |
321$(INSTALL_TARGETS): KBUILD_IMAGE = $(boot)/$(patsubst %install,%Image,$@) |
|
320$(INSTALL_TARGETS): | 322$(INSTALL_TARGETS): |
321 $(CONFIG_SHELL) $(srctree)/$(boot)/install.sh "$(KERNELRELEASE)" \ 322 $(boot)/$(patsubst %install,%Image,$@) System.map "$(INSTALL_PATH)" | 323 $(call cmd,install) |
323 324PHONY += vdso_install 325vdso_install: 326ifeq ($(CONFIG_VDSO),y) 327 $(Q)$(MAKE) $(build)=arch/arm/vdso $@ 328endif 329 330# My testing targets (bypasses dependencies) --- 18 unchanged lines hidden --- | 324 325PHONY += vdso_install 326vdso_install: 327ifeq ($(CONFIG_VDSO),y) 328 $(Q)$(MAKE) $(build)=arch/arm/vdso $@ 329endif 330 331# My testing targets (bypasses dependencies) --- 18 unchanged lines hidden --- |