19f9a34f87
This implements initial support for the vsyscall page on SH. At the moment we leave it configurable due to having nommu to support from the same code base. We hook it up for the signal trampoline return at present, with more to be added later, once uClibc catches up. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
23 lines
686 B
Makefile
23 lines
686 B
Makefile
#
|
|
# Makefile for the Linux/SuperH kernel.
|
|
#
|
|
|
|
extra-y := head.o init_task.o vmlinux.lds
|
|
|
|
obj-y := process.o signal.o entry.o traps.o irq.o \
|
|
ptrace.o setup.o time.o sys_sh.o semaphore.o \
|
|
io.o io_generic.o sh_ksyms.o syscalls.o
|
|
|
|
obj-y += cpu/ timers/
|
|
obj-$(CONFIG_VSYSCALL) += vsyscall/
|
|
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_CF_ENABLER) += cf-enabler.o
|
|
obj-$(CONFIG_SH_STANDARD_BIOS) += sh_bios.o
|
|
obj-$(CONFIG_SH_KGDB) += kgdb_stub.o kgdb_jmp.o
|
|
obj-$(CONFIG_SH_CPU_FREQ) += cpufreq.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
|
obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o
|
|
obj-$(CONFIG_APM) += apm.o
|
|
obj-$(CONFIG_PM) += pm.o
|