It is necessary that the kernel be with such parameters:
CONFIG_BPF=y CONFIG_BPF_SYSCALL=y CONFIG_BPF_JIT=y CONFIG_HAVE_EBPF_JIT=y CONFIG_BPF_EVENTS=y What do I need to do for this?
It is necessary that the kernel be with such parameters:
CONFIG_BPF=y CONFIG_BPF_SYSCALL=y CONFIG_BPF_JIT=y CONFIG_HAVE_EBPF_JIT=y CONFIG_BPF_EVENTS=y What do I need to do for this?
What do I need to do for this?
you must add these lines to the .config file after it is created.
all other actions for building the linux program are as usual (get the sources, build the .config , build (by calling the make program)).
Source: https://ru.stackoverflow.com/questions/891575/
All Articles