From 7afb772a701c0cd89c475ac9847f1868872ef986 Mon Sep 17 00:00:00 2001 From: Daniel Borkmann Date: Thu, 28 May 2020 17:28:50 +0200 Subject: [PATCH] docker, bpftool: fix checking out too old bpftool revision Commit 61d38f67f109 ("Build images in GitHub Actions (#3)") pointed bpftool back to an old revision which breaks the expectations from cilium-runtime. Move it forward in time to something recent. Signed-off-by: Daniel Borkmann --- images/bpftool/checkout-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/bpftool/checkout-linux.sh b/images/bpftool/checkout-linux.sh index 4b74c09..cf7a61a 100755 --- a/images/bpftool/checkout-linux.sh +++ b/images/bpftool/checkout-linux.sh @@ -8,7 +8,7 @@ set -o errexit set -o pipefail set -o nounset -rev="115506fea499f1cd9a80290b31eca4352e0559e9" +rev="e7b4e85255f2432a7e7d649710959398a1c70892" # git clone git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git /src/linux # cd /src/linux