mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-25 18:59:06 +08:00
13 lines
342 B
Bash
Executable File
13 lines
342 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
# noop script: it's here as a reminder that we might need it for other kernel versions
|
|
|
|
# for 4.9.0 and 5.5.0 code was:
|
|
# cd "${SELFTESTS_BPF}"
|
|
# printf "all:\n\ttouch bpf_testmod.ko\n\nclean:\n" > bpf_testmod/Makefile
|
|
# printf "all:\n\ttouch bpf_test_no_cfi.ko\n\nclean:\n" > bpf_test_no_cfi/Makefile
|
|
|
|
exit 0
|