diff options
author | Richard Kuo <rkuo@codeaurora.org> | 2011-10-31 19:55:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-01 10:34:21 -0400 |
commit | e95bf452a9e22bd1c9ae23fea041989e0603c39d (patch) | |
tree | fd18331fe343605c4d751237d191bdd258cd721c /arch/hexagon/kernel/Makefile | |
parent | 60e13231561b3a4c5269bfa1ef6c0569ad6f28ec (diff) |
Hexagon: Add configuration and makefiles for the Hexagon architecture.
Signed-off-by: Linas Vepstas <linas@codeaurora.org>
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/hexagon/kernel/Makefile')
-rw-r--r-- | arch/hexagon/kernel/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/hexagon/kernel/Makefile b/arch/hexagon/kernel/Makefile new file mode 100644 index 000000000000..3689f3754d09 --- /dev/null +++ b/arch/hexagon/kernel/Makefile | |||
@@ -0,0 +1,18 @@ | |||
1 | extra-y := head.o vmlinux.lds init_task.o | ||
2 | |||
3 | obj-$(CONFIG_SMP) += smp.o topology.o | ||
4 | |||
5 | obj-y += setup.o irq_cpu.o traps.o syscalltab.o signal.o time.o | ||
6 | obj-y += process.o syscall.o trampoline.o reset.o ptrace.o | ||
7 | obj-y += vdso.o | ||
8 | |||
9 | obj-$(CONFIG_KGDB) += kgdb.o | ||
10 | obj-$(CONFIG_MODULES) += module.o hexagon_ksyms.o | ||
11 | |||
12 | # Modules required to work with the Hexagon Virtual Machine | ||
13 | obj-y += vm_entry.o vm_events.o vm_switch.o vm_ops.o vm_init_segtable.o | ||
14 | obj-y += vm_vectors.o | ||
15 | |||
16 | obj-$(CONFIG_HAS_DMA) += dma.o | ||
17 | |||
18 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | ||