]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - arch/s390/kernel/Makefile
Merge branch 'linus' into core/softlockup
[mirror_ubuntu-hirsute-kernel.git] / arch / s390 / kernel / Makefile
1 #
2 # Makefile for the linux kernel.
3 #
4
5 #
6 # Passing null pointers is ok for smp code, since we access the lowcore here.
7 #
8 CFLAGS_smp.o := -Wno-nonnull
9
10 #
11 # Pass UTS_MACHINE for user_regset definition
12 #
13 CFLAGS_ptrace.o += -DUTS_MACHINE='"$(UTS_MACHINE)"'
14
15 obj-y := bitmap.o traps.o time.o process.o base.o early.o \
16 setup.o sys_s390.o ptrace.o signal.o cpcmd.o ebcdic.o \
17 s390_ext.o debug.o irq.o ipl.o dis.o diag.o mem_detect.o
18
19 obj-y += $(if $(CONFIG_64BIT),entry64.o,entry.o)
20 obj-y += $(if $(CONFIG_64BIT),reipl64.o,reipl.o)
21
22 extra-y += head.o init_task.o vmlinux.lds
23
24 obj-$(CONFIG_MODULES) += s390_ksyms.o module.o
25 obj-$(CONFIG_SMP) += smp.o topology.o
26
27 obj-$(CONFIG_AUDIT) += audit.o
28 compat-obj-$(CONFIG_AUDIT) += compat_audit.o
29 obj-$(CONFIG_COMPAT) += compat_linux.o compat_signal.o \
30 compat_wrapper.o compat_exec_domain.o \
31 $(compat-obj-y)
32
33 obj-$(CONFIG_VIRT_TIMER) += vtime.o
34 obj-$(CONFIG_STACKTRACE) += stacktrace.o
35 obj-$(CONFIG_KPROBES) += kprobes.o
36
37 # Kexec part
38 S390_KEXEC_OBJS := machine_kexec.o crash.o
39 S390_KEXEC_OBJS += $(if $(CONFIG_64BIT),relocate_kernel64.o,relocate_kernel.o)
40 obj-$(CONFIG_KEXEC) += $(S390_KEXEC_OBJS)
41