Kconfig 777 B

12345678910111213141516171819202122232425
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config USERMODE_DRIVER
  3. bool
  4. default n
  5. menuconfig BPF_PRELOAD
  6. bool "Preload BPF file system with kernel specific program and map iterators"
  7. depends on BPF
  8. depends on BPF_SYSCALL
  9. # The dependency on !COMPILE_TEST prevents it from being enabled
  10. # in allmodconfig or allyesconfig configurations
  11. depends on !COMPILE_TEST
  12. help
  13. This builds kernel module with several embedded BPF programs that are
  14. pinned into BPF FS mount point as human readable files that are
  15. useful in debugging and introspection of BPF programs and maps.
  16. if BPF_PRELOAD
  17. config BPF_PRELOAD_UMD
  18. tristate "bpf_preload kernel module"
  19. default m
  20. help
  21. This builds bpf_preload kernel module with embedded BPF programs for
  22. introspection in bpffs.
  23. endif