Kconfig 555 B

123456789101112131415161718
  1. config HAVE_LIVEPATCH
  2. bool
  3. help
  4. Arch supports kernel live patching
  5. config LIVEPATCH
  6. bool "Kernel Live Patching"
  7. depends on DYNAMIC_FTRACE_WITH_REGS
  8. depends on MODULES
  9. depends on SYSFS
  10. depends on KALLSYMS_ALL
  11. depends on HAVE_LIVEPATCH
  12. help
  13. Say Y here if you want to support kernel live patching.
  14. This option has no runtime impact until a kernel "patch"
  15. module uses the interface provided by this option to register
  16. a patch, causing calls to patched functions to be redirected
  17. to new function code contained in the patch module.