xref: /linux/kernel/bpf/preload/Kconfig (revision 8ea636848aca35b9f97c5b5dee30225cf2dd0fe6)
1# SPDX-License-Identifier: GPL-2.0-only
2config USERMODE_DRIVER
3	bool
4	default n
5
6menuconfig BPF_PRELOAD
7	bool "Preload BPF file system with kernel specific program and map iterators"
8	depends on BPF
9	select USERMODE_DRIVER
10	help
11	  This builds kernel module with several embedded BPF programs that are
12	  pinned into BPF FS mount point as human readable files that are
13	  useful in debugging and introspection of BPF programs and maps.
14
15if BPF_PRELOAD
16config BPF_PRELOAD_UMD
17	tristate "bpf_preload kernel module with user mode driver"
18	depends on CC_CAN_LINK
19	depends on m || CC_CAN_LINK_STATIC
20	default m
21	help
22	  This builds bpf_preload kernel module with embedded user mode driver.
23endif
24