Blame view

kernel/livepatch/Kconfig 586 Bytes
12cf89b55   Josh Poimboeuf   livepatch: rename...
1
  config HAVE_LIVEPATCH
83ac237a9   Christoph Jaeger   livepatch: kconfi...
2
  	bool
b700e7f03   Seth Jennings   livepatch: kernel...
3
4
  	help
  	  Arch supports kernel live patching
12cf89b55   Josh Poimboeuf   livepatch: rename...
5
  config LIVEPATCH
83ac237a9   Christoph Jaeger   livepatch: kconfi...
6
  	bool "Kernel Live Patching"
b700e7f03   Seth Jennings   livepatch: kernel...
7
8
9
10
  	depends on DYNAMIC_FTRACE_WITH_REGS
  	depends on MODULES
  	depends on SYSFS
  	depends on KALLSYMS_ALL
12cf89b55   Josh Poimboeuf   livepatch: rename...
11
  	depends on HAVE_LIVEPATCH
5720acf4b   Miroslav Benes   livepatch: Make l...
12
  	depends on !TRIM_UNUSED_KSYMS
b700e7f03   Seth Jennings   livepatch: kernel...
13
14
15
16
17
18
  	help
  	  Say Y here if you want to support kernel live patching.
  	  This option has no runtime impact until a kernel "patch"
  	  module uses the interface provided by this option to register
  	  a patch, causing calls to patched functions to be redirected
  	  to new function code contained in the patch module.