action.yml 630 B

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