mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 07:46:44 +07:00
a0c14d28df
> This is a no-no for those archs that still use -traditional. > > I dunno if this is a problem for you at the moment and the > > right fix is anyway to nuke -traditional. > > > > Sam Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
19 lines
387 B
Makefile
19 lines
387 B
Makefile
#
|
|
# 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
|
|
|
|
devres-y = ../../../kernel/irq/devres.o
|
|
|
|
obj-$(CONFIG_PCI) += bios32.o
|
|
obj-y$(CONFIG_MMU_SUN3) += dma.o # no, it's not a typo
|