From: Petter Reinholdtsen Date: Tue, 20 May 2025 15:01:26 +0000 (+0000) Subject: Added ebpf build rule mapping for armv8 to work with more armhf machines. X-Git-Tag: archive/raspbian/1.6.9-3+rpi1~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c123348ba1d5c0c0449e6e6eeef709cb94100e2b;p=opensnitch.git Added ebpf build rule mapping for armv8 to work with more armhf machines. Forwarded: https://github.com/evilsocket/opensnitch/pull/1326 Last-Update: 2025-04-20 Last-Update: 2025-04-20 Gbp-Pq: Name 1020-ebpf-armv8l.patch --- diff --git a/ebpf_prog/Makefile b/ebpf_prog/Makefile index d919ea4..8ce5fa5 100644 --- a/ebpf_prog/Makefile +++ b/ebpf_prog/Makefile @@ -19,6 +19,8 @@ else ifeq ($(ARCH),i686) ARCH := x86 else ifeq ($(ARCH),armv7l) ARCH := arm +else ifeq ($(ARCH),armv8l) + ARCH := arm else ifeq ($(ARCH),aarch64) ARCH := arm64 endif