37d07b72ef
Patch from Nicolas Pitre Since vmlinux.lds.S is preprocessed, we can use the defines already present in asm/memory.h (allowed by patch #3060) for the XIP kernel link address instead of relying on a duplicated Makefile hardcoded value, and also get rid of its dependency on awk to handle it at the same time. While at it let's clean XIP stuff even further and make things clearer in head.S with a nice code reduction. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
33 lines
787 B
Makefile
33 lines
787 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
AFLAGS_head.o := -DKERNEL_RAM_ADDR=$(TEXTADDR)
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := compat.o dma.o entry-armv.o entry-common.o irq.o \
|
|
process.o ptrace.o semaphore.o setup.o signal.o sys_arm.o \
|
|
time.o traps.o
|
|
|
|
obj-$(CONFIG_APM) += apm.o
|
|
obj-$(CONFIG_ARCH_ACORN) += ecard.o
|
|
obj-$(CONFIG_FOOTBRIDGE) += isa.o
|
|
obj-$(CONFIG_FIQ) += fiq.o
|
|
obj-$(CONFIG_MODULES) += armksyms.o module.o
|
|
obj-$(CONFIG_ARTHUR) += arthur.o
|
|
obj-$(CONFIG_ISA_DMA) += dma-isa.o
|
|
obj-$(CONFIG_PCI) += bios32.o
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
|
|
obj-$(CONFIG_IWMMXT) += iwmmxt.o
|
|
AFLAGS_iwmmxt.o := -Wa,-mcpu=iwmmxt
|
|
|
|
ifneq ($(CONFIG_ARCH_EBSA110),y)
|
|
obj-y += io.o
|
|
endif
|
|
|
|
head-y := head.o
|
|
obj-$(CONFIG_DEBUG_LL) += debug.o
|
|
|
|
extra-y := $(head-y) init_task.o vmlinux.lds
|