Makefile (95d002e0a34cb0f238abb39987f9980f325d8332) Makefile (9cc342f6c4a06ea613ddef1bcaa25409260aec63)
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the linux kernel.
4#
5
6extra-y := head_$(BITS).o
7extra-y += head$(BITS).o
8extra-y += ebda.o

--- 28 unchanged lines hidden (view full) ---

37endif
38
39# If instrumentation of this dir is enabled, boot hangs during first second.
40# Probably could be more selective here, but note that files related to irqs,
41# boot, dumpstack/stacktrace, etc are either non-interesting or can lead to
42# non-deterministic coverage.
43KCOV_INSTRUMENT := n
44
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the linux kernel.
4#
5
6extra-y := head_$(BITS).o
7extra-y += head$(BITS).o
8extra-y += ebda.o

--- 28 unchanged lines hidden (view full) ---

37endif
38
39# If instrumentation of this dir is enabled, boot hangs during first second.
40# Probably could be more selective here, but note that files related to irqs,
41# boot, dumpstack/stacktrace, etc are either non-interesting or can lead to
42# non-deterministic coverage.
43KCOV_INSTRUMENT := n
44
45CFLAGS_irq.o := -I$(src)/../include/asm/trace
45CFLAGS_irq.o := -I $(srctree)/$(src)/../include/asm/trace
46
47obj-y := process_$(BITS).o signal.o
48obj-$(CONFIG_COMPAT) += signal_compat.o
49obj-y += traps.o idt.o irq.o irq_$(BITS).o dumpstack_$(BITS).o
50obj-y += time.o ioport.o dumpstack.o nmi.o
51obj-$(CONFIG_MODIFY_LDT_SYSCALL) += ldt.o
52obj-y += setup.o x86_init.o i8259.o irqinit.o
53obj-$(CONFIG_JUMP_LABEL) += jump_label.o

--- 104 unchanged lines hidden ---
46
47obj-y := process_$(BITS).o signal.o
48obj-$(CONFIG_COMPAT) += signal_compat.o
49obj-y += traps.o idt.o irq.o irq_$(BITS).o dumpstack_$(BITS).o
50obj-y += time.o ioport.o dumpstack.o nmi.o
51obj-$(CONFIG_MODIFY_LDT_SYSCALL) += ldt.o
52obj-y += setup.o x86_init.o i8259.o irqinit.o
53obj-$(CONFIG_JUMP_LABEL) += jump_label.o

--- 104 unchanged lines hidden ---