This change is the core kernel support for TILEPro and TILE64 chips. No driver support (except the console driver) is included yet. This includes the relevant Linux headers in asm/; the low-level low-level "Tile architecture" headers in arch/, which are shared with the hypervisor, etc., and are build-system agnostic; and the relevant hypervisor headers in hv/. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Reviewed-by: Paul Mundt <lethal@linux-sh.org>
17 lines
575 B
Makefile
17 lines
575 B
Makefile
#
|
|
# Makefile for the Linux/TILE kernel.
|
|
#
|
|
|
|
extra-y := vmlinux.lds head_$(BITS).o
|
|
obj-y := backtrace.o entry.o init_task.o irq.o messaging.o \
|
|
pci-dma.o proc.o process.o ptrace.o reboot.o \
|
|
setup.o signal.o single_step.o stack.o sys.o time.o traps.o \
|
|
intvec_$(BITS).o regs_$(BITS).o tile-desc_$(BITS).o
|
|
|
|
obj-$(CONFIG_TILEGX) += futex_64.o
|
|
obj-$(CONFIG_COMPAT) += compat.o compat_signal.o
|
|
obj-$(CONFIG_SMP) += smpboot.o smp.o tlb.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
|
obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o
|