1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Added ebpf build rule mapping for s390x to s390.
This ensure the kernel headers are found during compilation.
Author: Petter Reinholdtsen <pere@hungry.com>
Forwarded: https://github.com/evilsocket/opensnitch/pull/1333
Last-Update: 2025-04-25
---
Index: opensnitch-salsa/ebpf_prog/Makefile
===================================================================
--- opensnitch-salsa.orig/ebpf_prog/Makefile 2025-04-25 07:58:50.785702284 +0200
+++ opensnitch-salsa/ebpf_prog/Makefile 2025-04-25 07:59:34.170084431 +0200
@@ -23,6 +23,8 @@
ARCH := arm
else ifeq ($(ARCH),aarch64)
ARCH := arm64
+else ifeq ($(ARCH),s390x)
+ ARCH := s390
endif
ifeq ($(ARCH),arm)
|