mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
c4245c9d65
Impact for nommu: - Store table in .rodata instead of .text, - Let kernel/sys_ni.c handle the stubbing of MMU-only syscalls, - Implement sys_mremap and sys_nfsservct, - Remove unused padding at the end of the table. Impact for mmu: - Store table in .rodata instead of .data. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Greg Ungerer <gerg@uclinux.org>
18 lines
372 B
Plaintext
18 lines
372 B
Plaintext
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
ifndef CONFIG_SUN3
|
|
extra-y := head.o
|
|
else
|
|
extra-y := sun3-head.o
|
|
endif
|
|
extra-y += vmlinux.lds
|
|
|
|
obj-y := entry.o process.o traps.o ints.o signal.o ptrace.o module.o \
|
|
sys_m68k.o time.o setup.o m68k_ksyms.o devres.o syscalltable.o
|
|
|
|
devres-y = ../../../kernel/irq/devres.o
|
|
|
|
obj-y$(CONFIG_MMU_SUN3) += dma.o # no, it's not a typo
|