blob: 54102deb50ba9846e3ef4baee4d62f2f90a94155 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001# SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002config HAVE_LIVEPATCH
3 bool
4 help
5 Arch supports kernel live patching
6
7config LIVEPATCH
8 bool "Kernel Live Patching"
9 depends on DYNAMIC_FTRACE_WITH_REGS
10 depends on MODULES
11 depends on SYSFS
12 depends on KALLSYMS_ALL
13 depends on HAVE_LIVEPATCH
14 depends on !TRIM_UNUSED_KSYMS
15 help
16 Say Y here if you want to support kernel live patching.
17 This option has no runtime impact until a kernel "patch"
18 module uses the interface provided by this option to register
19 a patch, causing calls to patched functions to be redirected
20 to new function code contained in the patch module.