forked from Minki/linux
e336e05bca
Same code. Use the generic version. The special Makefile treatment is pointless anyway as init_task.o contains only data which is handled by the linker script. So no point on being treated like head text. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/20120503085034.692078846@linutronix.de Acked-and-tested-by: Richard Kuo <rkuo@codeaurora.org>
19 lines
521 B
Makefile
19 lines
521 B
Makefile
extra-y := head.o vmlinux.lds
|
|
|
|
obj-$(CONFIG_SMP) += smp.o topology.o
|
|
|
|
obj-y += setup.o irq_cpu.o traps.o syscalltab.o signal.o time.o
|
|
obj-y += process.o syscall.o trampoline.o reset.o ptrace.o
|
|
obj-y += vdso.o
|
|
|
|
obj-$(CONFIG_KGDB) += kgdb.o
|
|
obj-$(CONFIG_MODULES) += module.o hexagon_ksyms.o
|
|
|
|
# Modules required to work with the Hexagon Virtual Machine
|
|
obj-y += vm_entry.o vm_events.o vm_switch.o vm_ops.o vm_init_segtable.o
|
|
obj-y += vm_vectors.o
|
|
|
|
obj-$(CONFIG_HAS_DMA) += dma.o
|
|
|
|
obj-$(CONFIG_STACKTRACE) += stacktrace.o
|