Skip to content

Commit a040e7e

Browse files
authored
Bump falco version (#1962)
1 parent a7fe9ec commit a040e7e

File tree

6 files changed

+20
-3
lines changed

6 files changed

+20
-3
lines changed

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,7 @@
6464
[submodule "third_party/uthash"]
6565
path = builder/third_party/uthash
6666
url = https://github.com/troydhanson/uthash.git
67+
[submodule "builder/third_party/bpftool"]
68+
path = builder/third_party/bpftool
69+
url = https://github.com/libbpf/bpftool
70+
branch = v7.3.0

builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ RUN dnf -y update \
1212
bison \
1313
ca-certificates \
1414
clang-17.0.6 \
15+
llvm-17.0.6 \
1516
cmake \
1617
cracklib-dicts \
1718
diffutils \
@@ -42,7 +43,6 @@ RUN dnf -y update \
4243
valgrind \
4344
wget \
4445
which \
45-
bpftool \
4646
# for USDT support
4747
systemtap-sdt-devel \
4848
&& dnf clean all

builder/install/90-bpftool.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
cd third_party/bpftool
6+
7+
# Replace libbpf with our submodule
8+
rm -rf libbpf/
9+
ln -s ../libbpf libbpf
10+
11+
mkdir src/build
12+
make V=1 -C src ${NPROCS:+-j ${NPROCS}} all install

builder/third_party/bpftool

Submodule bpftool added at 687e7f0

collector/container/konflux.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN /tmp/.konflux/scripts/subscription-manager-bro.sh register /mnt && \
1919
wget \
2020
unzip \
2121
clang \
22-
bpftool \
22+
llvm \
2323
cmake-3.18.2-9.el8 \
2424
gcc-c++ \
2525
openssl-devel \

falcosecurity-libs

Submodule falcosecurity-libs updated 180 files

0 commit comments

Comments
 (0)