2022-03-22 14:03:31 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#
|
|
|
|
# Makefile for linux kernel module support
|
|
|
|
#
|
|
|
|
|
|
|
|
# These are called from save_stack_trace() on slub debug path,
|
|
|
|
# and produce insane amounts of uninteresting coverage.
|
|
|
|
KCOV_INSTRUMENT_module.o := n
|
|
|
|
|
|
|
|
obj-y += main.o
|
|
|
|
obj-$(CONFIG_MODULE_DECOMPRESS) += decompress.o
|
|
|
|
obj-$(CONFIG_MODULE_SIG) += signing.o
|
2022-03-22 14:03:34 +00:00
|
|
|
obj-$(CONFIG_LIVEPATCH) += livepatch.o
|