| 1234567891011121314151617 |
- name: 'Enable eBPF Support'
- description: 'Enable eBPF program support configs in the kernel (Issue #176)'
- runs:
- using: "composite"
- steps:
- - name: Enable eBPF Kernel Configs
- uses: ./.github/actions/set-kernel-config
- with:
- config_list: |
- # eBPF support (Issue #176) — tiny safe programs that run in the kernel
- # to trace/control events. BTF (enabled separately) is only on 6.1+;
- # the older build system lacks the toolchain needed for BTF emission.
- CONFIG_BPF_EVENTS=y
- CONFIG_KPROBE_EVENTS=y
- CONFIG_UPROBES=y
- CONFIG_UPROBE_EVENTS=y
|