Makefile (c6bbfbb729e88188b7c9113d58647766db03f1d4) | Makefile (c86f51737f8dedbfc2b8566b15231d4ff6d6ac59) |
---|---|
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 --- 126 unchanged lines hidden (view full) --- 135CHECKFLAGS += -D__arm__ 136 137#Default value 138head-y := arch/arm/kernel/head$(MMUEXT).o 139 140# Text offset. This list is sorted numerically by address in order to 141# provide a means to avoid/resolve conflicts in multi-arch kernels. 142textofs-y := 0x00008000 | 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 --- 126 unchanged lines hidden (view full) --- 135CHECKFLAGS += -D__arm__ 136 137#Default value 138head-y := arch/arm/kernel/head$(MMUEXT).o 139 140# Text offset. This list is sorted numerically by address in order to 141# provide a means to avoid/resolve conflicts in multi-arch kernels. 142textofs-y := 0x00008000 |
143textofs-$(CONFIG_ARCH_CLPS711X) := 0x00028000 | |
144# We don't want the htc bootloader to corrupt kernel during resume 145textofs-$(CONFIG_PM_H1940) := 0x00108000 146# SA1111 DMA bug: we don't want the kernel to live in precious DMA-able memory 147ifeq ($(CONFIG_ARCH_SA1100),y) 148textofs-$(CONFIG_SA1111) := 0x00208000 149endif 150textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000 151textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000 --- 170 unchanged lines hidden (view full) --- 322 323PHONY += bzImage $(BOOT_TARGETS) $(INSTALL_TARGETS) 324 325bootpImage uImage: zImage 326zImage: Image 327 328$(BOOT_TARGETS): vmlinux 329 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ | 143# We don't want the htc bootloader to corrupt kernel during resume 144textofs-$(CONFIG_PM_H1940) := 0x00108000 145# SA1111 DMA bug: we don't want the kernel to live in precious DMA-able memory 146ifeq ($(CONFIG_ARCH_SA1100),y) 147textofs-$(CONFIG_SA1111) := 0x00208000 148endif 149textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000 150textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000 --- 170 unchanged lines hidden (view full) --- 321 322PHONY += bzImage $(BOOT_TARGETS) $(INSTALL_TARGETS) 323 324bootpImage uImage: zImage 325zImage: Image 326 327$(BOOT_TARGETS): vmlinux 328 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ |
330 @$(kecho) ' Kernel: $(boot)/$@ is ready' | |
331 332$(INSTALL_TARGETS): 333 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ 334 335%.dtb: | scripts 336 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@ 337 338PHONY += dtbs dtbs_install --- 38 unchanged lines hidden --- | 329 330$(INSTALL_TARGETS): 331 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ 332 333%.dtb: | scripts 334 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@ 335 336PHONY += dtbs dtbs_install --- 38 unchanged lines hidden --- |