Files
LearnGO/go/pkg/mod/github.com/cilium/ebpf@v0.11.0/examples/headers/update.sh
T
2024-09-19 21:38:24 -04:00

19 lines
511 B
Bash

#!/usr/bin/env bash
# Version of libbpf to fetch headers from
LIBBPF_VERSION=0.6.1
# The headers we want
prefix=libbpf-"$LIBBPF_VERSION"
headers=(
"$prefix"/LICENSE.BSD-2-Clause
"$prefix"/src/bpf_endian.h
"$prefix"/src/bpf_helper_defs.h
"$prefix"/src/bpf_helpers.h
"$prefix"/src/bpf_tracing.h
)
# Fetch libbpf release and extract the desired headers
curl -sL "https://github.com/libbpf/libbpf/archive/refs/tags/v${LIBBPF_VERSION}.tar.gz" | \
tar -xz --xform='s#.*/##' "${headers[@]}"